I'm trying to build from the SVN tip and am getting the following error:
[javac] /home/travis/alfresco/src/HEAD/root/projects/repository/source/java/org/alfresco/filesys/ftp/FTPSrvSession.java:4155: cannot find symbol
[javac] symbol : method compose(java.lang.String,boolean,int)
[javac] location: class sun.text.Normalizer
[javac] cmd = sun.text.Normalizer.compose( new String(m_inbuf, 0, rdlen, "UTF-8"), false, 0);
I am using JDK 1.5.0_10. I did some decompiling, and it looks like they've refactored that code a bit: sun.text.Normalizer has almost no functionality. It looks like the code is now in sun.text.normalize.NormalizeBase.
I'm going to make that change on my system; but I'm not familiar enough with the code to say for sure that is the right change. I just wanted to point it out.
Is there a specific version of JDK 1.5 that I should be using?
Thanks.
tj