Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include Automatic-Module-Name in MANIFEST.MF #427

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -6,7 +6,7 @@

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

<property name="dist-version" value="javassist-3.29.1-GA"/>
<property name="dist-version" value="javassist-3.29.2-GA"/>

<property environment="env"/>
<property name="target.jar" value="javassist.jar"/>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@
Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java.
</description>
<version>3.29.1-GA</version>
<version>3.29.2-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>

Expand Down Expand Up @@ -183,6 +183,7 @@
<mainClass>javassist.CtClass</mainClass>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestFile>src/main/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
Expand Down
4 changes: 0 additions & 4 deletions src/main/META-INF/MANIFEST.MF
@@ -1,5 +1 @@
Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.29.1-GA
Main-Class: javassist.CtClass
Automatic-Module-Name: org.javassist
2 changes: 1 addition & 1 deletion src/main/javassist/CtClass.java
Expand Up @@ -69,7 +69,7 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
public static final String version = "3.29.1-GA";
public static final String version = "3.29.2-GA";

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