blob: f58989fd9edbc543f7008aee46f0fe5479e3fb70 [file] [log] [blame]
Stephane Frenot1cee87d2006-07-17 12:14:31 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot1cee87d2006-07-17 12:14:31 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Richard S. Halld2118752006-12-22 16:59:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot1cee87d2006-07-17 12:14:31 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenot1cee87d2006-07-17 12:14:31 +000010 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000011 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000012 <name>Apache Felix MOSGi JMX agent</name>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000013 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000014 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000015
Stephane Frenot1cee87d2006-07-17 12:14:31 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000030 <scope>provided</scope>
31 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000032 <dependency>
33 <groupId>mx4j</groupId>
34 <artifactId>mx4j</artifactId>
35 <version>3.0.2</version>
36 <scope>provided</scope>
37 </dependency>
38
39
Stephane Frenot1cee87d2006-07-17 12:14:31 +000040 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000041
Stephane Frenot1cee87d2006-07-17 12:14:31 +000042 <build>
43 <plugins>
44 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000045 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000047 <extensions>true</extensions>
48 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000049 <instructions>
50 <Bundle-Name>MOSGi JMX-MX4J Agent Service</Bundle-Name>
51 <Bundle-Description>MOSGi JMX-MX4J Agent Service</Bundle-Description>
52 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
53 <Bundle-Activator>org.apache.felix.mosgi.jmx.agent.AgentActivator</Bundle-Activator>
54 <Export-Package>${pom.artifactId},
55 org.apache.felix.mosgi.jmx.agent.mx4j.server,
56 org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor,
57 org.apache.felix.mosgi.jmx.agent.mx4j.util
58 </Export-Package>
59 <Private-Package>${pom.artifactId}.*</Private-Package>
60 </instructions>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000061 </configuration>
62 </plugin>
63 </plugins>
64 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000065
Stephane Frenot1cee87d2006-07-17 12:14:31 +000066</project>