<h2>Changes</h2>
+<p>-version 3.29
+
<p>-version 3.28 on May 8, 2021
<ul>
<li>GitHub Issue #305, #328, #339, #350, #357, and PR #363.
</target>
<target name="runtest" depends="jar,test-compile">
+ <copy file="${test.lib.dir}/empty.jar"
+ tofile="${test.lib.dir}/emptyorig.jar"
+ preservelastmodified="true" />
+ <junit fork="true" printsummary="true" dir="${test.run.dir}">
+ <classpath refid="test.classpath"/>
+ <formatter type="xml" extension=".xml"/>
+ <test name="javassist.JvstTest" outfile="TestLog" />
+ </junit>
+ <move file="${test.lib.dir}/emptyorig.jar"
+ tofile="${test.lib.dir}/empty.jar" />
+ </target>
+
+ <target name="runtest8" depends="jar,test-compile">
<copy file="${test.lib.dir}/empty.jar"
tofile="${test.lib.dir}/emptyorig.jar"
preservelastmodified="true" />
Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org
-Specification-Version: 3.28.0-GA
+Specification-Version: 3.29.0-SNAPSHOT
Main-Class: javassist.CtClass
Automatic-Module-Name: org.javassist
/**
* The version number of this release.
*/
- public static final String version = "3.28.0-GA";
+ public static final String version = "3.29.0-SNAPSHOT";
/**
* Prints the version number and the copyright notice.
if (doDelegation)
if (name.startsWith("java.")
|| name.startsWith("javax.")
+ || name.startsWith("jdk.internal.")
|| name.startsWith("sun.")
|| name.startsWith("com.sun.")
|| name.startsWith("org.w3c.")