I was having a build problem after a fresh checkout. There's an ObjectIdTableTest class which depends on org.apache.woden.ant.ObjectIdTable. The latter class is only built by the buildANT target. Running buildTests fails with
buildTests: [mkdir] Created dir: C:\workspaces\e31\woden\woden\build\classestest [javac] Compiling 39 source files to C:\workspaces\e31\woden\woden\build\classestest [javac] C:\workspaces\e31\woden\woden\test\org\apache\woden\ant\ObjectIdTableTest.java:19: cannot find symbol [javac] symbol : class ObjectIdTable [javac] location: package org.apache.woden.ant [javac] import org.apache.woden.ant.ObjectIdTable; [javac] ^ [javac] C:\workspaces\e31\woden\woden\test\org\apache\woden\tests\AllWodenTests.java:18: cannot find symbol [javac] symbol : class ObjectIdTable [javac] location: package org.apache.woden.ant [javac] import org.apache.woden.ant.ObjectIdTable; [javac] ^ [javac] C:\workspaces\e31\woden\woden\test\org\apache\woden\ant\ObjectIdTableTest.java:54: cannot find symbol [javac] symbol : class ObjectIdTable [javac] location: class org.apache.woden.ant.ObjectIdTableTest [javac] ObjectIdTable oit = new ObjectIdTable(); [javac] ^ [javac] C:\workspaces\e31\woden\woden\test\org\apache\woden\ant\ObjectIdTableTest.java:54: cannot find symbol [javac] symbol : class ObjectIdTable [javac] location: class org.apache.woden.ant.ObjectIdTableTest [javac] ObjectIdTable oit = new ObjectIdTable(); [javac] ^ [javac] Note: C:\workspaces\e31\woden\woden\test\org\apache\woden\tests\TestErrorHandler.java uses unchecked or unsafe operations. [javac] Note: Recompile with -Xlint:unchecked for details. [javac] 4 errors so I added buildANT to the list of dependencies for buildTests. Change is in r477191. Cheers, Jeremy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
