blob: 0aea6c45f65e779193f48ad7724dee418693c5e3 [file] [log] [blame]
Stephane Frenotaaf13f82006-07-17 12:14:59 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenotaaf13f82006-07-17 12:14:59 +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 Frenotaaf13f82006-07-17 12:14:59 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenotaaf13f82006-07-17 12:14:59 +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 registry</name>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000012 <artifactId>org.apache.felix.mosgi.jmx.registry</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 Frenotaaf13f82006-07-17 12:14:59 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000029 <scope>provided</scope>
30 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000031 <dependency>
32 <groupId>mx4j</groupId>
33 <artifactId>mx4j-jmx</artifactId>
34 <version>3.0.1</version>
35 <scope>provided</scope>
36 </dependency>
37
Stephane Frenotaaf13f82006-07-17 12:14:59 +000038 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000039
Stephane Frenotaaf13f82006-07-17 12:14:59 +000040 <build>
41 <plugins>
42 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000043 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000045 <extensions>true</extensions>
46 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000047 <instructions>
48 <Bundle-Name>MOSGi JMX rmiregistry</Bundle-Name>
49 <Bundle-Description>MOSGi JMX rmiregistry</Bundle-Description>
50 <Bundle-Activator>org.apache.felix.mosgi.jmx.registry.mx4j.tools.naming.NamingService</Bundle-Activator>
51 <Export-Package>${pom.artifactId}.mx4j.tools.naming</Export-Package>
52 <DynamicImport-Package>*</DynamicImport-Package>
53 </instructions>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000054 </configuration>
55 </plugin>
56 </plugins>
57 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000058
Stephane Frenotaaf13f82006-07-17 12:14:59 +000059</project>