You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2018/01/07 11:33:06 UTC

svn commit: r1820447 - in /commons/proper/net/trunk: pom.xml src/changes/changes.xml

Author: pascalschumacher
Date: Sun Jan  7 11:33:06 2018
New Revision: 1820447

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

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

Modified: commons/proper/net/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/pom.xml?rev=1820447&r1=1820446&r2=1820447&view=diff
==============================================================================
--- commons/proper/net/trunk/pom.xml (original)
+++ commons/proper/net/trunk/pom.xml Sun Jan  7 11:33:06 2018
@@ -235,6 +235,11 @@ Supported protocols include: Echo, Finge
                     <excludes>
                         <exclude>**/examples/**</exclude>
                     </excludes>
+                    <archive combine.children="append">
+                        <manifestEntries>
+                            <Automatic-Module-Name>${commons.module.name}</Automatic-Module-Name>
+                        </manifestEntries>
+                    </archive>
                 </configuration>
             </plugin>
 

Modified: commons/proper/net/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/changes/changes.xml?rev=1820447&r1=1820446&r2=1820447&view=diff
==============================================================================
--- commons/proper/net/trunk/src/changes/changes.xml [utf-8] (original)
+++ commons/proper/net/trunk/src/changes/changes.xml [utf-8] Sun Jan  7 11:33:06 2018
@@ -74,6 +74,9 @@ This is mainly a bug-fix release. See fu
  The examples are not part of the public API, so this does not affect compatibility.
 
 ">
+            <action issue="NET-648" type="add" dev="pschumacher">
+            Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility
+            </action>
             <action issue="NET-641" type="fix" dev="sebb" due-to="pin_ptr">
             SubnetUtils.SubnetInfo.isInRange("0.0.0.0") returns true for CIDR/31, 32
             </action>