FELIX-307
---------
Moving all poms to maven-bundle-plugin
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@551579 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/mosgi/mosgi.jmx.agent/pom.xml b/mosgi/mosgi.jmx.agent/pom.xml
index 17a3bd0..e234cf4 100644
--- a/mosgi/mosgi.jmx.agent/pom.xml
+++ b/mosgi/mosgi.jmx.agent/pom.xml
@@ -7,7 +7,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <packaging>osgi-bundle</packaging>
+ <packaging>bundle</packaging>
<name>Apache Felix MOSGi JMX agent</name>
<artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
<version>0.9.0-incubator-SNAPSHOT</version>
@@ -33,32 +33,22 @@
<build>
<plugins>
<plugin>
- <groupId>org.apache.felix.plugins</groupId>
- <artifactId>maven-osgi-plugin</artifactId>
- <!--version>${felix.version}</version-->
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
- <osgiManifest>
- <bundleName>MOSGi JMX-MX4J Agent Service</bundleName>
- <bundleDescription>MOSGi JMX-MX4J Agent Service</bundleDescription>
- <bundleActivator>auto-detect</bundleActivator>
- <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
- <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
- <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
- <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
- <exportPackage>
- ${pom.artifactId};specification-version="1.0.0",
- org.apache.felix.mosgi.jmx.agent.mx4j.server;specification-version="1.0.0",
- org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor;specification-version="1.0.0",
- org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0"
- </exportPackage>
- <importPackage>
- org.osgi.service.log;specification-version="1.0.0",
- org.osgi.framework;specification-version="1.0.0",
- javax.management;specification-version="1.0.0",
- javax.management.loading;specification-version="1.0.0"
- </importPackage>
- </osgiManifest>
+ <instructions>
+ <Bundle-Name>MOSGi JMX-MX4J Agent Service</Bundle-Name>
+ <Bundle-Description>MOSGi JMX-MX4J Agent Service</Bundle-Description>
+ <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+ <Bundle-Activator>org.apache.felix.mosgi.jmx.agent.AgentActivator</Bundle-Activator>
+ <Export-Package>${pom.artifactId},
+ org.apache.felix.mosgi.jmx.agent.mx4j.server,
+ org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor,
+ org.apache.felix.mosgi.jmx.agent.mx4j.util
+ </Export-Package>
+ <Private-Package>${pom.artifactId}.*</Private-Package>
+ </instructions>
</configuration>
</plugin>
</plugins>