diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-28 16:51:36 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-28 16:51:36 +0000 |
commit | 93f5c6cfd927ede97c520dc8ffa2f5412a477571 (patch) | |
tree | fad567af5a4595ce72068ce59a4b73fab2a76089 | |
parent | 171185dceef77e8e034bc8c01f48f8365b6b6fa9 (diff) |
Fix the property names to be consistent with maven3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1028382 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | maven-plugins/trunk/maven-bundle-plugin/pom.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/maven-plugins/trunk/maven-bundle-plugin/pom.xml b/maven-plugins/trunk/maven-bundle-plugin/pom.xml index 85fdb7e65f..5675500208 100644 --- a/maven-plugins/trunk/maven-bundle-plugin/pom.xml +++ b/maven-plugins/trunk/maven-bundle-plugin/pom.xml @@ -191,13 +191,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> |