blob: f6bff7299b334848f945f377f373e1bc2b3e16a1 [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>
31 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000032
Stephane Frenotaaf13f82006-07-17 12:14:59 +000033 <build>
34 <plugins>
35 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000036 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000038 <extensions>true</extensions>
39 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000040 <instructions>
41 <Bundle-Name>MOSGi JMX rmiregistry</Bundle-Name>
42 <Bundle-Description>MOSGi JMX rmiregistry</Bundle-Description>
43 <Bundle-Activator>org.apache.felix.mosgi.jmx.registry.mx4j.tools.naming.NamingService</Bundle-Activator>
44 <Export-Package>${pom.artifactId}.mx4j.tools.naming</Export-Package>
45 <DynamicImport-Package>*</DynamicImport-Package>
46 </instructions>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000047 </configuration>
48 </plugin>
49 </plugins>
50 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000051
Stephane Frenotaaf13f82006-07-17 12:14:59 +000052</project>