aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Ritter <britter@apache.org>2017-09-14 19:12:57 +0000
committerBenedikt Ritter <britter@apache.org>2017-09-14 19:12:57 +0000
commit789557e9e21e9518083ecc69b8920c739d7759cc (patch)
tree89ff7c3dc82fc324517c77a0a58c965ad4d0c2c4
parentd10a6d7f6d30e7addd19c0e18b4381944b51e3a6 (diff)
downloadapache-commons-bcel-789557e9e21e9518083ecc69b8920c739d7759cc.tar.gz
BCEL-293: Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/bcel/trunk@1808379 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--pom.xml10
-rw-r--r--src/changes/changes.xml1
2 files changed, 10 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 72da6cdc..75dd7bdb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,7 +46,7 @@
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<commons.componentid>bcel</commons.componentid>
- <commons.module.name>org.apache.commons.bcel</commons.module.name>
+ <commons.module.name>org.apache.bcel</commons.module.name>
<commons.release.version>6.0</commons.release.version>
<commons.release.desc>(Java 7+)</commons.release.desc>
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-bcel</commons.scmPubUrl>
@@ -241,6 +241,14 @@
</goals>
</execution>
</executions>
+ <!-- Temporary fix for BCEL-293, remove this after this has implemented in parent pom -->
+ <configuration>
+ <archive combine.children="append">
+ <manifestEntries>
+ <Automatic-Module-Name>org.apache.bcel</Automatic-Module-Name>
+ </manifestEntries>
+ </archive>
+ </configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b6feaf2e..ebece0e5 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -63,6 +63,7 @@ The <action> type attribute can be add,update,fix,remove.
<body>
<release version="6.1" date="tba" description="tba">
+ <action issue="BCEL-293" type="add" dev="britter">Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility</action>
<action issue="BCEL-292" type="add" dev="markt">Add minimal Java 9 support</action>
<action issue="BCEL-286" type="fix" dev="britter" due-to="Mark Roberts">Utility.signatureToString fails if a method has multiple type arguments</action>
<action issue="BCEL-287" type="fix" dev="britter" due-to="Mark Roberts">IINC does not handle -128 properly</action>