You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ce...@apache.org on 2009/05/18 19:55:27 UTC

svn commit: r776023 - /commons/sandbox/logging_empty/trunk/pom.xml

Author: ceki
Date: Mon May 18 17:55:27 2009
New Revision: 776023

URL: http://svn.apache.org/viewvc?rev=776023&view=rev
Log:
manifest not manifestEntries

Modified:
    commons/sandbox/logging_empty/trunk/pom.xml

Modified: commons/sandbox/logging_empty/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/logging_empty/trunk/pom.xml?rev=776023&r1=776022&r2=776023&view=diff
==============================================================================
--- commons/sandbox/logging_empty/trunk/pom.xml (original)
+++ commons/sandbox/logging_empty/trunk/pom.xml Mon May 18 17:55:27 2009
@@ -18,6 +18,12 @@
 -->
 
 <project>
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>4</version>
+  </parent>
+
   <modelVersion>4.0.0</modelVersion>
   <groupId>commons-logging</groupId>
   <artifactId>commons-logging</artifactId>
@@ -57,15 +63,10 @@
         <artifactId>maven-jar-plugin</artifactId>
         <configuration>
           <archive>
-            <manifestEntries>
-              <Implementation-Title>commons-logging</Implementation-Title>
-              <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
-              <Implementation-Vendor-Id> org.apache</Implementation-Vendor-Id>
-              <Implementation-Version>${project.version}</Implementation-Version>
-              <Specification-Title>commons-logging</Specification-Title>
-              <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
-              <Specification-Version>${project.version}</Specification-Version>
-            </manifestEntries>
+            <manifest>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+            </manifest>
           </archive>
         </configuration>
       </plugin>