classpath - needed for release testing
//XXX
// AMC - added in path separator since absence was causing
// build failures with invalid classpath
+ // AMC - subsequently added value of "aspectjrt.path property so that
+ // when testing with a non-development jar the version tests find the right one.
return testProjectPath + File.pathSeparator +
- System.getProperty("sun.boot.class.path") + File.pathSeparator + "../runtime/bin";
+ System.getProperty("sun.boot.class.path") + File.pathSeparator + "../runtime/bin" +
+ File.pathSeparator + System.getProperty("aspectjrt.path");
}
public String getOutputPath() {