Browse Source

3.22.0-GA release

tags/list
chibash 6 years ago
parent
commit
bb14f52dc9

+ 1
- 1
README.md View File

Java bytecode engineering toolkit Java bytecode engineering toolkit
### [Javassist version 3](http://www.javassist.org) ### [Javassist version 3](http://www.javassist.org)


Copyright (C) 1999- by Shigeru Chiba, All rights reserved.
Copyright (C) 1999-2017 by Shigeru Chiba, All rights reserved.


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; it enables Java simple. It is a class library for editing bytecodes in Java; it enables Java

+ 3
- 2
Readme.html View File



<h1>Javassist version 3</h1> <h1>Javassist version 3</h1>


<h3>Copyright (C) 1999-2016 by Shigeru Chiba, All rights reserved.</h3>
<h3>Copyright (C) 1999-2017 by Shigeru Chiba, All rights reserved.</h3>


<p><br></p> <p><br></p>




<h2>Changes</h2> <h2>Changes</h2>


<p>-version 3.22
<p>-version 3.22 on October 10, 2017


<ul> <ul>
<li>Java 9 supports.
<li>JIRA JASSIST-261. <li>JIRA JASSIST-261.
</ul> </ul>
</p> </p>

+ 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.22.0-CR1"/>
<property name="dist-version" value="javassist-3.22.0-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


+ 1
- 1
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.22.0-CR2</version>
<version>3.22.0-GA</version>
<name>Javassist</name> <name>Javassist</name>
<url>http://www.javassist.org/</url> <url>http://www.javassist.org/</url>



+ 1
- 1
src/main/META-INF/MANIFEST.MF View File

Specification-Title: Javassist Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.22.0-CR1
Specification-Version: 3.22.0-GA
Main-Class: javassist.CtClass Main-Class: javassist.CtClass

+ 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.22.0-CR2";
public static final String version = "3.22.0-GA";


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

+ 1
- 1
src/main/javassist/util/HotSwapAgent.java View File

* *
* <pre> * <pre>
* $ jshell --class-path javassist.jar * $ jshell --class-path javassist.jar
* jshell> javassist.util.HotSwapAgent.createAgentJarFile("hotswap.jar")
* jshell&gt; javassist.util.HotSwapAgent.createAgentJarFile("hotswap.jar")
* </pre> * </pre>
* *
* <p>Then, run the JVM with the VM argument {@code -javaagent:hotswap.jar} * <p>Then, run the JVM with the VM argument {@code -javaagent:hotswap.jar}

Loading…
Cancel
Save