Skip to content

Commit

Permalink
Merge pull request #427 from dakusui/master-issue-426_includeAutomati…
Browse files Browse the repository at this point in the history
…cModuleNameInManifestMf

Includes Automatic-Module-Name in MANIFEST.MF
  • Loading branch information
chibash committed Sep 11, 2022
2 parents 42ca281 + 3756466 commit d1dbce0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
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

0 comments on commit d1dbce0

Please sign in to comment.