You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2012/04/27 10:53:58 UTC

svn commit: r1331302 - /karaf/branches/karaf-2.2.x/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml

Author: jbonofre
Date: Fri Apr 27 08:53:58 2012
New Revision: 1331302

URL: http://svn.apache.org/viewvc?rev=1331302&view=rev
Log:
[KARAF-1416] Fix blueprint archetype generated pom

Modified:
    karaf/branches/karaf-2.2.x/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml

Modified: karaf/branches/karaf-2.2.x/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/karaf/branches/karaf-2.2.x/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml?rev=1331302&r1=1331301&r2=1331302&view=diff
==============================================================================
--- karaf/branches/karaf-2.2.x/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml (original)
+++ karaf/branches/karaf-2.2.x/archetypes/blueprint/src/main/resources/archetype-resources/pom.xml Fri Apr 27 08:53:58 2012
@@ -19,14 +19,16 @@
                 <version>^felix.plugin.version^</version>
                 <extensions>true</extensions>
                 <configuration>
-                    <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-                    <Bundle-Version>${project.version}</Bundle-Version>
-                    <Export-Package>
-                        ${package}*;version=${project.version}
-                    </Export-Package>
-                    <Import-Package>
-                        *
-                    </Import-Package>
+                    <instructions>
+                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Version>${project.version}</Bundle-Version>
+                        <Export-Package>
+                            ${package}*;version=${project.version}
+                        </Export-Package>
+                        <Import-Package>
+                            *
+                        </Import-Package>
+                    </instructions>
                 </configuration>
             </plugin>
         </plugins>