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/features/management/pom.xml b/karaf/features/management/pom.xml
index 6091359..c8d85eb 100644
--- a/karaf/features/management/pom.xml
+++ b/karaf/features/management/pom.xml
@@ -98,12 +98,12 @@
                 <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
                     <instructions>
-                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                         <Export-Package>
-                            ${pom.artifactId}*;version=${pom.version}
+                            ${project.artifactId}*;version=${project.version}
                         </Export-Package>
                         <Import-Package>
-                            !${pom.artifactId}*,
+                            !${project.artifactId}*,
                             javax.management,
                             javax.management.loading,
                             org.osgi.service.command,