After updating to JDK update 13, can't compile
I was using Apache Ant 1.7, JBoss 4.0.4RC1, JRE 1.5.0_06. After I upgraded to JRE 1.5.0_13, I can not compile. I'm getting the following error:
BUILD FAILED
C:\trunk\build.xml:63: The following error occurred while executing this line:
C:\trunk\quantifi\build.xml:117: Compile failed; see the compiler error output for details.
63: <ant dir="quantifi" target="hpl.ear" />
117: <javac debug="${debug}" srcdir="${src}" destdir="${classes}" source="1.5" deprecation="on" classpathref="classpath">
I checked environment variables - java_home is pointing to update 13. I don't know what's wrong and don't even know how to troubleshoot this thing. Here are some errors:
compile:
[javac] Compiling 245 source files to C:\trunk\quantifi\classes\servlet\WEB-INF\classes
[javac] C:\trunk\quantifi\WafBase\com\covansys\waf\data\WafBaseForDb.java:6: cannot find symbol
[javac] symbol : class WhereUnitClass
[javac] location: package com.healthprolink.data
[javac] import com.healthprolink.data.WhereUnitClass;
[javac] ^
[javac] C:\trunk\quantifi\WafBase\com\covansys\waf\data\WafBaseForDb.java:7: cannot find symbol
[javac] symbol : class HibernateManager
[javac] location: package com.healthprolink.data
[javac] import com.healthprolink.data.HibernateManager;
[javac] ^
[javac] C:\trunk\quantifi\AppMgmt\ejb\HospitalSb\com\healthprolink\mgmt\hospitalsb\HospitalSb.java:8: cannot find symbol
[javac] symbol : class DataAccess
[javac] location: package com.healthprolink.data
[javac] import com.healthprolink.data.DataAccess;
[javac] ^
It's like it's not including classes and my web-inf/classes folder is empty.