You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2017/10/05 20:21:05 UTC

svn commit: r1811253 - /commons/proper/configuration/trunk/pom.xml

Author: oheger
Date: Thu Oct  5 20:21:05 2017
New Revision: 1811253

URL: http://svn.apache.org/viewvc?rev=1811253&view=rev
Log:
[CONFIGURATION-673] Added Automatic-Module-Name header to manifest.

Thanks to Andreas Kuhtz for the patch.

Modified:
    commons/proper/configuration/trunk/pom.xml

Modified: commons/proper/configuration/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/pom.xml?rev=1811253&r1=1811252&r2=1811253&view=diff
==============================================================================
--- commons/proper/configuration/trunk/pom.xml (original)
+++ commons/proper/configuration/trunk/pom.xml Thu Oct  5 20:21:05 2017
@@ -663,6 +663,25 @@
                   </execution>
               </executions>
           </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>test-jar</goal>
+                </goals>
+              </execution>
+            </executions>
+            <!-- Temporary fix, remove this after this has implemented in parent pom -->
+            <configuration>
+              <archive combine.children="append">
+                <manifestEntries>
+                  <Automatic-Module-Name>org.apache.commons.configuration2</Automatic-Module-Name>
+                </manifestEntries>
+              </archive>
+            </configuration>
+          </plugin>
       </plugins>
 
     </build>