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/06/08 07:34:39 UTC

[1/2] [lang] LANG-1338: Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility.

Repository: commons-lang
Updated Branches:
  refs/heads/master ad648cf8a -> 82f1ca8ef


LANG-1338: Add Automatic-Module-Name MANIFEST entry for Java 9
compatibility.

This change duplicates adds some maven-jar-plugin configuration pom.
After we have implemented a solution for this in parent pom, this
confgiruation should be removed.


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/8ec7e02e
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/8ec7e02e
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/8ec7e02e

Branch: refs/heads/master
Commit: 8ec7e02e753267c2470f76d9ed729e3ca7dfec6e
Parents: ad648cf
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Jun 7 10:17:31 2017 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Thu Jun 8 08:14:32 2017 +0200

----------------------------------------------------------------------
 pom.xml                 | 13 +++++++++++++
 src/changes/changes.xml |  1 +
 2 files changed, 14 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/8ec7e02e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 09b6aea..0459926 100644
--- a/pom.xml
+++ b/pom.xml
@@ -690,6 +690,19 @@
           <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile>
         </configuration>
       </plugin>
+
+      <!-- Temporary fix for LANG-1338, remove this after this has implemented in parent pom -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive combine.children="append">
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.commons.lang3</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
     </plugins>
 
   </build>

http://git-wip-us.apache.org/repos/asf/commons-lang/blob/8ec7e02e/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b005ab6..56c2071 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -46,6 +46,7 @@ The <action> type attribute can be add,update,fix,remove.
   <body>
 
   <release version="3.6" date="2017-MM-DD" description="TBD">
+    <action issue="LANG-1338" type="update" dev="britter">Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility</action>
     <action issue="LANG-1336" type="add" dev="britter" due-to="Beluga Behr">Add NUL Byte To CharUtils</action>
     <action issue="LANG-1337" type="fix" dev="kinow">Fix test failures in IBM JDK 8 for ToStringBuilderTest</action>
     <action issue="LANG-1304" type="add" dev="pschumacher" due-to="Andy Klimczak">Add method in StringUtils to determine if string contains both mixed cased characters</action>


[2/2] [lang] Merge branch 'LANG-1338'

Posted by br...@apache.org.
Merge branch 'LANG-1338'


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/82f1ca8e
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/82f1ca8e
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/82f1ca8e

Branch: refs/heads/master
Commit: 82f1ca8efd7254e0598d69da301ea19721b43d00
Parents: ad648cf 8ec7e02
Author: Benedikt Ritter <br...@apache.org>
Authored: Thu Jun 8 09:34:21 2017 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Thu Jun 8 09:34:21 2017 +0200

----------------------------------------------------------------------
 pom.xml                 | 13 +++++++++++++
 src/changes/changes.xml |  1 +
 2 files changed, 14 insertions(+)
----------------------------------------------------------------------