Browse Source

built javassist.jar of 3.18.2

tags/rel_3_18_2_ga_build
Shigeru Chiba 10 years ago
parent
commit
5c567aa528
3 changed files with 5 additions and 5 deletions
  1. 4
    4
      build.xml
  2. BIN
      javassist.jar
  3. 1
    1
      src/main/javassist/CtClass.java

+ 4
- 4
build.xml View File

@@ -69,13 +69,13 @@
</javac>
</target>

<target name="compile14" depends="prepare">
<target name="compile16" depends="prepare">
<javac srcdir="${src.dir}"
destdir="${build.classes.dir}"
debug="on"
deprecation="on"
source="1.4"
target="1.4"
source="1.6"
target="1.6"
optimize="off"
includes="**">
<classpath refid="classpath"/>
@@ -153,7 +153,7 @@
to ${build.classes.dir}.</echo>
</target>

<target name="jar" depends="compile14">
<target name="jar" depends="compile16">
<jar jarfile="${target.jar}" update="true" manifest="${src.dir}/META-INF/MANIFEST.MF">
<fileset dir="${build.classes.dir}">
<include name="**/*.class"/>

BIN
javassist.jar View File


+ 1
- 1
src/main/javassist/CtClass.java View File

@@ -69,7 +69,7 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
public static final String version = "3.18.0-GA";
public static final String version = "3.18.2-GA";

/**
* Prints the version number and the copyright notice.

Loading…
Cancel
Save