blob: e234cf427b749db229e5169939b3fae9547a015e [file] [log] [blame]
<project>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix</artifactId>
<version>0.9.0-incubator-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<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>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<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>
</build>
</project>