blob: b73734f7c3c9ee81281139c8dd65c842746850d3 [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>
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 Frenotaaf13f82006-07-17 12:14:59 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenotaaf13f82006-07-17 12:14:59 +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 registry</name>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000013 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000015
Stephane Frenotaaf13f82006-07-17 12:14:59 +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 Frenotaaf13f82006-07-17 12:14:59 +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 Frenotaaf13f82006-07-17 12:14:59 +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 Frenotaaf13f82006-07-17 12:14:59 +000033 <scope>provided</scope>
34 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000035 <dependency>
36 <groupId>mx4j</groupId>
37 <artifactId>mx4j-jmx</artifactId>
38 <version>3.0.1</version>
39 <scope>provided</scope>
40 </dependency>
41
Stephane Frenotaaf13f82006-07-17 12:14:59 +000042 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000043
Stephane Frenotaaf13f82006-07-17 12:14:59 +000044 <build>
45 <plugins>
46 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000049 <version>1.1.0-SNAPSHOT</version>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000050 <extensions>true</extensions>
51 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000052 <instructions>
53 <Bundle-Name>MOSGi JMX rmiregistry</Bundle-Name>
54 <Bundle-Description>MOSGi JMX rmiregistry</Bundle-Description>
55 <Bundle-Activator>org.apache.felix.mosgi.jmx.registry.mx4j.tools.naming.NamingService</Bundle-Activator>
56 <Export-Package>${pom.artifactId}.mx4j.tools.naming</Export-Package>
57 <DynamicImport-Package>*</DynamicImport-Package>
58 </instructions>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000059 </configuration>
60 </plugin>
61 </plugins>
62 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000063
Stephane Frenotaaf13f82006-07-17 12:14:59 +000064</project>