Author: antelder
Date: Thu Jun 2 09:32:11 2011
New Revision: 1130450
URL: http://svn.apache.org/viewvc?rev=1130450&view=rev
Log:
Fix warnings when building with maven3
Modified:
tuscany/maven-plugins/trunk/tuscany-zip-plugin/pom.xml
Modified: tuscany/maven-plugins/trunk/tuscany-zip-plugin/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/maven-plugins/trunk/tuscany-zip-plugin/pom.xml?rev=1130450&r1=1130449&r2=1130450&view=diff
==============================================================================
--- tuscany/maven-plugins/trunk/tuscany-zip-plugin/pom.xml (original)
+++ tuscany/maven-plugins/trunk/tuscany-zip-plugin/pom.xml Thu Jun 2 09:32:11
2011
@@ -23,12 +23,13 @@
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>4</version>
+ <relativePath></relativePath>
</parent>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-zip-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <name>Apache Tuscany Maven SCA ZIP Plugin</name>
+ <name>Apache Tuscany SCA ZIP Maven Plugin</name>
<version>1.0-SNAPSHOT</version>
<scm>
@@ -227,13 +228,13 @@
<archive>
<manifestEntries>
<Extension-Name>${project.artifactId}</Extension-Name>
-
<Specification-Title>${name}</Specification-Title>
+
<Specification-Title>${project.name}</Specification-Title>
<Specification-Vendor>The Apache Software
Foundation</Specification-Vendor>
-
<Specification-Version>${version}</Specification-Version>
-
<Implementation-Title>${name}</Implementation-Title>
+
<Specification-Version>${project.version}</Specification-Version>
+
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
<Implementation-Vendor>The Apache Software
Foundation</Implementation-Vendor>
-
<Implementation-Version>${version}</Implementation-Version>
+
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>