Browse Source

fixes github issue #471

tags/rel_3_30_1_ga^0
chibash 4 months ago
parent
commit
71395e3994
5 changed files with 10 additions and 6 deletions
  1. 4
    0
      Changes.md
  2. 1
    1
      build.xml
  3. BIN
      javassist.jar
  4. 4
    4
      pom.xml
  5. 1
    1
      src/main/javassist/CtClass.java

+ 4
- 0
Changes.md View File

### Changes ### Changes


#### version 3.30.1 on December 17, 2023

* GitHub Issue #471

#### version 3.30 on December 17, 2023 #### version 3.30 on December 17, 2023


* GitHub PR #434, 448, 463 (Issue #462), 466, 467, 468, 469, 470, * GitHub PR #434, 448, 463 (Issue #462), 466, 467, 468, 469, 470,

+ 1
- 1
build.xml View File



<project name="javassist" default="jar" basedir="."> <project name="javassist" default="jar" basedir=".">


<property name="dist-version" value="javassist-3.30.0-GA"/>
<property name="dist-version" value="javassist-3.30.1-GA"/>


<property environment="env"/> <property environment="env"/>
<property name="target.jar" value="javassist.jar"/> <property name="target.jar" value="javassist.jar"/>

BIN
javassist.jar View File


+ 4
- 4
pom.xml View File

Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java. simple. It is a class library for editing bytecodes in Java.
</description> </description>
<version>3.30.0-GA</version>
<version>3.30.1-GA</version>
<name>Javassist</name> <name>Javassist</name>
<url>http://www.javassist.org/</url> <url>http://www.javassist.org/</url>


<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version> <version>3.2</version>
<configuration> <configuration>
<source>8</source>
<target>8</target>
<source>11</source>
<target>11</target>
<testSource>11</testSource> <testSource>11</testSource>
<testTarget>11</testTarget> <testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument> <testCompilerArgument>-parameters</testCompilerArgument>
<plugin> <plugin>
<groupId>org.apache.felix</groupId> <groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId> <artifactId>maven-bundle-plugin</artifactId>
<version>3.3.0</version>
<version>5.1.9</version>
<executions> <executions>
<execution> <execution>
<id>bundle-manifest</id> <id>bundle-manifest</id>

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

/** /**
* The version number of this release. * The version number of this release.
*/ */
public static final String version = "3.30.0-GA";
public static final String version = "3.30.1-GA";


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

Loading…
Cancel
Save