Author: olamy
Date: Wed Oct 3 16:58:55 2012
New Revision: 1393612
URL: http://svn.apache.org/viewvc?rev=1393612&view=rev
Log:
bundle plugin in childs
Modified:
directmemory/parent/trunk/pom.xml
Modified: directmemory/parent/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/directmemory/parent/trunk/pom.xml?rev=1393612&r1=1393611&r2=1393612&view=diff
==============================================================================
--- directmemory/parent/trunk/pom.xml (original)
+++ directmemory/parent/trunk/pom.xml Wed Oct 3 16:58:55 2012
@@ -377,44 +377,16 @@ under the License.
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-plugin.version}</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>${bundle-plugin.version}</version>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>${bundle-plugin.version}</version>
- <extensions>true</extensions>
- <inherited>true</inherited>
- <configuration>
- <instructions>
- <Bundle-Name>${project.name}</Bundle-Name>
- <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
- <Export-Package>${osgi.export}</Export-Package>
- <Import-Package>${osgi.import}</Import-Package>
-
<DynamicImport-Package>${osgi.dynamic.import}</DynamicImport-Package>
- <Private-Package>${osgi.private}</Private-Package>
- <Require-Bundle>${osgi.bundles}</Require-Bundle>
- <Bundle-Activator>${osgi.activator}</Bundle-Activator>
- </instructions>
- <supportedProjectTypes>
- <supportedProjectType>jar</supportedProjectType>
- <supportedProjectType>war</supportedProjectType>
- <supportedProjectType>bundle</supportedProjectType>
- </supportedProjectTypes>
- <unpackBundle>true</unpackBundle>
- </configuration>
- <executions>
- <execution>
- <id>bundle-manifest</id>
- <phase>process-classes</phase>
- <goals>
- <goal>manifest</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
+
<plugin>
<groupId>org.codehaus.mojo</groupId>