blob: f71220149de6758fcc50b07f987035541b9f35d5 [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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00006 <version>1.1.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.9.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000021 <scope>provided</scope>
22 </dependency>
23 <dependency>
24 <groupId>${pom.groupId}</groupId>
25 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000026 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000027 <scope>provided</scope>
28 </dependency>
29 <dependency>
30 <groupId>${pom.groupId}</groupId>
31 <artifactId>org.apache.felix.framework</artifactId>
Carsten Ziegelerfa25b9e2007-09-26 08:12:09 +000032 <version>1.0.0</version>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000033 <scope>provided</scope>
34 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000035 <dependency>
36 <groupId>mx4j</groupId>
37 <artifactId>mx4j</artifactId>
38 <version>3.0.2</version>
39 <scope>provided</scope>
40 </dependency>
41
42
Stephane Frenot1cee87d2006-07-17 12:14:31 +000043 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000044
Stephane Frenot1cee87d2006-07-17 12:14:31 +000045 <build>
46 <plugins>
47 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000048 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000050 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000051 <extensions>true</extensions>
52 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000053 <instructions>
54 <Bundle-Name>MOSGi JMX-MX4J Agent Service</Bundle-Name>
55 <Bundle-Description>MOSGi JMX-MX4J Agent Service</Bundle-Description>
56 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
57 <Bundle-Activator>org.apache.felix.mosgi.jmx.agent.AgentActivator</Bundle-Activator>
58 <Export-Package>${pom.artifactId},
59 org.apache.felix.mosgi.jmx.agent.mx4j.server,
60 org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor,
61 org.apache.felix.mosgi.jmx.agent.mx4j.util
62 </Export-Package>
63 <Private-Package>${pom.artifactId}.*</Private-Package>
64 </instructions>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000065 </configuration>
66 </plugin>
67 </plugins>
68 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000069
Stephane Frenot1cee87d2006-07-17 12:14:31 +000070</project>