eclipse-ee4j / jakartaee-tck-tools

Other
7 stars 15 forks source link

fix nested class name issue 89 #90

Closed scottmarlow closed 1 month ago

scottmarlow commented 1 month ago

https://github.com/eclipse-ee4j/jakartaee-tck-tools/issues/89 to preserve the added nested class like we see done in the EE 10 ant build.xml:

<property name="appclient.jar.classes" value=" com/sun/ts/lib/harness/EETest$Fault.class, com/sun/ts/lib/harness/EETest$SetupException.class, com/sun/ts/lib/harness/EETest.class,

scottmarlow commented 1 month ago

Updating...

scottmarlow commented 1 month ago

This change is now working. Still need to see if we need treat regular nested class names the same as anonymous classes.

scottmarlow commented 1 month ago

I'm not sure why I was getting a compile error now as I do see these classes:

find -name EETest. ./common/src/main/java/com/sun/ts/lib/harness/EETest.java ./common/target/classes/com/sun/ts/lib/harness/EETest$Fault.class ./common/target/classes/com/sun/ts/lib/harness/EETest$SetupException.class ./common/target/classes/com/sun/ts/lib/harness/EETest.class