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/26 21:03:58 UTC

svn commit: r1809785 - in /commons/proper/logging/trunk: pom.xml src/changes/changes.xml

Author: britter
Date: Tue Sep 26 21:03:58 2017
New Revision: 1809785

URL: http://svn.apache.org/viewvc?rev=1809785&view=rev
Log:
LOGGING-165: Add Automatic-Module-Name Manifest Header for Java 9 compatibility.

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

Modified: commons/proper/logging/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/pom.xml?rev=1809785&r1=1809784&r2=1809785&view=diff
==============================================================================
--- commons/proper/logging/trunk/pom.xml (original)
+++ commons/proper/logging/trunk/pom.xml Tue Sep 26 21:03:58 2017
@@ -264,6 +264,13 @@ under the License.
             </configuration>
           </execution>
         </executions>
+        <configuration>
+          <archive combine.children="append">
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.commons.logging</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
       </plugin>
 
       <plugin>

Modified: commons/proper/logging/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/changes/changes.xml?rev=1809785&r1=1809784&r2=1809785&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/changes/changes.xml (original)
+++ commons/proper/logging/trunk/src/changes/changes.xml Tue Sep 26 21:03:58 2017
@@ -44,6 +44,9 @@ The <action> type attribute can be add,u
   </properties>
   <body>
     <release version="1.2.1" date="TBD" description="This is a maintenance release containing bug fixes. Java 1.2 or later is required.">
+      <action issue="LOGGING-165" dev="britter" type="add">
+        Add Automatic-Module-Name Manifest Header for Java 9 compatibility.
+      </action>
       <action issue="LOGGING-163" dev="ggregory" type="fix" due-to="Kaloyan Spiridonov">
         BufferedReader is not closed properly.
       </action>