You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ni...@apache.org on 2007/01/06 16:05:52 UTC

svn commit: r493483 - /jakarta/commons/proper/commons-parent/trunk/pom.xml

Author: niallp
Date: Sat Jan  6 07:05:51 2007
New Revision: 493483

URL: http://svn.apache.org/viewvc?view=rev&rev=493483
Log:
Add default jar manifest entries:
  Specification-Version
  Specification-Vendor
  Implementation-Version
  Implementation-Vendor
  Implementation-Vendor-Id
  X-Compile-Source-JDK
  X-Compile-Target-JDK

Modified:
    jakarta/commons/proper/commons-parent/trunk/pom.xml

Modified: jakarta/commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/commons-parent/trunk/pom.xml?view=diff&rev=493483&r1=493482&r2=493483
==============================================================================
--- jakarta/commons/proper/commons-parent/trunk/pom.xml (original)
+++ jakarta/commons/proper/commons-parent/trunk/pom.xml Sat Jan  6 07:05:51 2007
@@ -106,6 +106,22 @@
         </configuration>
       </plugin>
       <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Version>${project.version}</Specification-Version>
+              <Specification-Vendor>${project.organization.name}</Specification-Vendor>
+              <Implementation-Version>${project.version}</Implementation-Version>
+              <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
+              <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+              <X-Compile-Source-JDK>${maven.compile.source}</X-Compile-Source-JDK>
+              <X-Compile-Target-JDK>${maven.compile.source}</X-Compile-Target-JDK>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
         <artifactId>maven-idea-plugin</artifactId>
         <configuration>
           <jdkLevel>${maven.compile.source}</jdkLevel>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org