You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2017/09/14 19:12:57 UTC

svn commit: r1808379 - in /commons/proper/bcel/trunk: pom.xml src/changes/changes.xml

Author: britter
Date: Thu Sep 14 19:12:57 2017
New Revision: 1808379

URL: http://svn.apache.org/viewvc?rev=1808379&view=rev
Log:
BCEL-293: Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility

Modified:
    commons/proper/bcel/trunk/pom.xml
    commons/proper/bcel/trunk/src/changes/changes.xml

Modified: commons/proper/bcel/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/pom.xml?rev=1808379&r1=1808378&r2=1808379&view=diff
==============================================================================
--- commons/proper/bcel/trunk/pom.xml [UTF-8] (original)
+++ commons/proper/bcel/trunk/pom.xml [UTF-8] Thu Sep 14 19:12:57 2017
@@ -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>

Modified: commons/proper/bcel/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/changes/changes.xml?rev=1808379&r1=1808378&r2=1808379&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/changes/changes.xml [utf-8] (original)
+++ commons/proper/bcel/trunk/src/changes/changes.xml [utf-8] Thu Sep 14 19:12:57 2017
@@ -63,6 +63,7 @@ The <action> type attribute can be add,u
 
   <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>