You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cc...@apache.org on 2010/01/19 19:33:54 UTC

svn commit: r900891 - /felix/trunk/karaf/jaas/config/pom.xml

Author: ccustine
Date: Tue Jan 19 18:33:54 2010
New Revision: 900891

URL: http://svn.apache.org/viewvc?rev=900891&view=rev
Log:
Fix to work with Maven 3

Modified:
    felix/trunk/karaf/jaas/config/pom.xml

Modified: felix/trunk/karaf/jaas/config/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/karaf/jaas/config/pom.xml?rev=900891&r1=900890&r2=900891&view=diff
==============================================================================
--- felix/trunk/karaf/jaas/config/pom.xml (original)
+++ felix/trunk/karaf/jaas/config/pom.xml Tue Jan 19 18:33:54 2010
@@ -72,10 +72,10 @@
                 <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
                     <instructions>
-                        <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
+                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
                         <Export-Package>${pom.artifactId}*;version=${project.version}</Export-Package>
                         <Import-Package>!${pom.artifactId}*,*</Import-Package>
-                        <Private-Package>${artifactId}.impl</Private-Package>
+                        <Private-Package>${pom.artifactId}.impl</Private-Package>
                         <_versionpolicy>${bnd.version.policy}</_versionpolicy>
                     </instructions>
                 </configuration>