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/spring/pom.xml b/karaf/deployer/spring/pom.xml
index bba941c..2458b41 100644
--- a/karaf/deployer/spring/pom.xml
+++ b/karaf/deployer/spring/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.spring</Private-Package>
                         <_versionpolicy>${bnd.version.policy}</_versionpolicy>
                     </instructions>