Fixing deprecated pom.* property references for Maven 3.
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@944771 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/karaf/deployer/blueprint/pom.xml b/karaf/deployer/blueprint/pom.xml
index 5c18796..a24c624 100644
--- a/karaf/deployer/blueprint/pom.xml
+++ b/karaf/deployer/blueprint/pom.xml
@@ -71,9 +71,9 @@
<instructions>
<!-- Set the blueprint.graceperiod flag to false to allow the bundle to start
See the blueprint config file -->
- <Bundle-SymbolicName>${pom.artifactId};blueprint.graceperiod:=false</Bundle-SymbolicName>
- <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
- <Import-Package>!${pom.artifactId}*,*</Import-Package>
+ <Bundle-SymbolicName>${project.artifactId};blueprint.graceperiod:=false</Bundle-SymbolicName>
+ <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package>
+ <Import-Package>!${project.artifactId}*,*</Import-Package>
<Private-Package>org.apache.felix.karaf.deployer.blueprint</Private-Package>
<_versionpolicy>${bnd.version.policy}</_versionpolicy>
</instructions>