Author: rdonkin
Date: Mon Jun 16 13:09:30 2008
New Revision: 668282
URL: http://svn.apache.org/viewvc?rev=668282&view=rev
Log:
Target version 2.4. Generate manifest in maven build.
Removed:
james/mailet/api/trunk/src/main/resources/META-INF/
Modified:
james/mailet/api/trunk/default.properties
james/mailet/api/trunk/pom.xml
Modified: james/mailet/api/trunk/default.properties
URL:
http://svn.apache.org/viewvc/james/mailet/api/trunk/default.properties?rev=668282&r1=668281&r2=668282&view=diff
==============================================================================
--- james/mailet/api/trunk/default.properties (original)
+++ james/mailet/api/trunk/default.properties Mon Jun 16 13:09:30 2008
@@ -8,8 +8,8 @@
name=mailet
Name=Mailet API
-version=3.0-SNAPSHOT
-manifestVersion=3.0
+version=2.4-SNAPSHOT
+manifestVersion=2.4-SNAPSHOT
year=2007
extension.name=org.apache.mailet
vendor=The Apache Software Foundation
Modified: james/mailet/api/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/james/mailet/api/trunk/pom.xml?rev=668282&r1=668281&r2=668282&view=diff
==============================================================================
--- james/mailet/api/trunk/pom.xml (original)
+++ james/mailet/api/trunk/pom.xml Mon Jun 16 13:09:30 2008
@@ -31,7 +31,7 @@
<groupId>org.apache.james</groupId>
<artifactId>mailet</artifactId>
<name>Apache Mailet API</name>
- <version>3.0-SNAPSHOT</version>
+ <version>2.4-SNAPSHOT</version>
<packaging>jar</packaging>
<description>
Apache Mailet API
@@ -39,7 +39,7 @@
<parent>
<groupId>org.apache.james</groupId>
<artifactId>james-project</artifactId>
- <version>1.1-SNAPSHOT</version>
+ <version>1.1</version>
<relativePath>../james-project/project/pom.xml</relativePath>
</parent>
<url>http://james.apache.org/mailet</url>
@@ -122,9 +122,18 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
-
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Specification-Title>Apache Mailet API</Specification-Title>
+ <Specification-Version>${pom.version}</Specification-Version>
+ <Specification-Vendor>The Apache Software
Foundation</Specification-Vendor>
+ <Implementation-Title>Apache Mailet API</Implementation-Title>
+ <Implementation-Version>${pom.version}</Implementation-Version>
+ <Implementation-Vendor>The Apache Software
Foundation</Implementation-Vendor>
+ <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+ <url>${pom.url}</url>
+ </manifestEntries>
</archive>
</configuration>
</plugin>