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 08:00:18 UTC

[lang] Fix duplicated maven-jar-plugin configuration

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


Fix duplicated maven-jar-plugin configuration


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

Branch: refs/heads/master
Commit: b48043d18ea6cafa9f6404d897bab13a11b9a918
Parents: 82f1ca8
Author: Benedikt Ritter <br...@apache.org>
Authored: Thu Jun 8 10:00:12 2017 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Thu Jun 8 10:00:12 2017 +0200

----------------------------------------------------------------------
 pom.xml | 21 ++++++++-------------
 1 file changed, 8 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/b48043d1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0459926..ac5beca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -661,6 +661,14 @@
             </goals>
           </execution>
         </executions>
+        <!-- Temporary fix for LANG-1338, remove this after this has implemented in parent pom -->
+        <configuration>
+          <archive combine.children="append">
+            <manifestEntries>
+              <Automatic-Module-Name>org.apache.commons.lang3</Automatic-Module-Name>
+            </manifestEntries>
+          </archive>
+        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -690,19 +698,6 @@
           <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>