blob: 6642665054953c8ff522d9b360cc065f2fed7060 [file] [log] [blame]
Stephane Frenot410b1f62006-07-20 09:35:19 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot410b1f62006-07-20 09:35:19 +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 Frenot410b1f62006-07-20 09:35:19 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenot410b1f62006-07-20 09:35:19 +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 rmiconnector</name>
Stephane Frenot410b1f62006-07-20 09:35:19 +000013 <artifactId>org.apache.felix.mosgi.jmx.rmiconnector</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 Frenot410b1f62006-07-20 09:35:19 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000030 <scope>provided</scope>
31 </dependency>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000035 <scope>provided</scope>
36 </dependency>
37 <dependency>
38 <groupId>${pom.groupId}</groupId>
39 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000040 <scope>provided</scope>
41 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000042 <dependency>
43 <groupId>mx4j</groupId>
44 <artifactId>mx4j-jmx</artifactId>
45 <version>3.0.1</version>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>mx4j</groupId>
50 <artifactId>mx4j-remote</artifactId>
51 <version>3.0.1</version>
52 <scope>provided</scope>
53 </dependency>
54
55
Stephane Frenot410b1f62006-07-20 09:35:19 +000056 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000057
Stephane Frenot410b1f62006-07-20 09:35:19 +000058 <build>
59 <plugins>
60 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000061 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000063 <extensions>true</extensions>
64 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000065 <instructions>
66 <Bundle-Name>MOSGi JMX-MX4J RMI Connector</Bundle-Name>
67 <Bundle-Description>MOSGi JMX-MX4J RMI Connector</Bundle-Description>
68 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
69 <Bundle-Activator>org.apache.felix.mosgi.jmx.rmiconnector.RmiConnectorActivator</Bundle-Activator>
70 <Export-Package>org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.provider.rmi </Export-Package>
71 <Private-Package>${pom.artifactId}.*</Private-Package>
72 </instructions>
Stephane Frenot410b1f62006-07-20 09:35:19 +000073 </configuration>
74 </plugin>
75 </plugins>
76 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000077
Stephane Frenot410b1f62006-07-20 09:35:19 +000078</project>