diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-06-02 09:32:11 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-06-02 09:32:11 +0000 |
commit | df1a763606e9841c81e7f73c885bc200d9dfe9ea (patch) | |
tree | 4685cb33ff8fd6d1f63e837bf5814806602451ac /maven-plugins/trunk | |
parent | 1e565b55f7dc7c497d9bdae9e88f8fc0038d329f (diff) |
Fix warnings when building with maven3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1130450 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven-plugins/trunk')
-rw-r--r-- | maven-plugins/trunk/tuscany-zip-plugin/pom.xml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/maven-plugins/trunk/tuscany-zip-plugin/pom.xml b/maven-plugins/trunk/tuscany-zip-plugin/pom.xml index 1801210948..1d204df1be 100644 --- a/maven-plugins/trunk/tuscany-zip-plugin/pom.xml +++ b/maven-plugins/trunk/tuscany-zip-plugin/pom.xml @@ -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> |