blob: aa7554d81f5ed23e8da1ad3189c2df6e984bfd38 [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>
Stephane Frenot410b1f62006-07-20 09:35:19 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenot410b1f62006-07-20 09:35:19 +00009 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000010 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX rmiconnector</name>
Stephane Frenot410b1f62006-07-20 09:35:19 +000012 <artifactId>org.apache.felix.mosgi.jmx.rmiconnector</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000013 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000014
Stephane Frenot410b1f62006-07-20 09:35:19 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000029 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000034 <scope>provided</scope>
35 </dependency>
36 <dependency>
37 <groupId>${pom.groupId}</groupId>
38 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000039 <scope>provided</scope>
40 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000041 <dependency>
42 <groupId>mx4j</groupId>
43 <artifactId>mx4j-jmx</artifactId>
44 <version>3.0.1</version>
45 <scope>provided</scope>
46 </dependency>
47 <dependency>
48 <groupId>mx4j</groupId>
49 <artifactId>mx4j-remote</artifactId>
50 <version>3.0.1</version>
51 <scope>provided</scope>
52 </dependency>
53
54
Stephane Frenot410b1f62006-07-20 09:35:19 +000055 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000056
Stephane Frenot410b1f62006-07-20 09:35:19 +000057 <build>
58 <plugins>
59 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000060 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000062 <extensions>true</extensions>
63 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000064 <instructions>
65 <Bundle-Name>MOSGi JMX-MX4J RMI Connector</Bundle-Name>
66 <Bundle-Description>MOSGi JMX-MX4J RMI Connector</Bundle-Description>
67 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
68 <Bundle-Activator>org.apache.felix.mosgi.jmx.rmiconnector.RmiConnectorActivator</Bundle-Activator>
69 <Export-Package>org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.provider.rmi </Export-Package>
70 <Private-Package>${pom.artifactId}.*</Private-Package>
71 </instructions>
Stephane Frenot410b1f62006-07-20 09:35:19 +000072 </configuration>
73 </plugin>
74 </plugins>
75 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000076
Stephane Frenot410b1f62006-07-20 09:35:19 +000077</project>