blob: bb77d75ee1de06473175ae88425f89f71f670196 [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>
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>
Stephane Frenot0afc7632006-12-22 10:45:14 +000014 <version>0.9.0-incubator-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>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000030 <scope>provided</scope>
31 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000032 <dependency>
33 <groupId>mx4j</groupId>
34 <artifactId>mx4j-jmx</artifactId>
35 <version>3.0.1</version>
36 <scope>provided</scope>
37 </dependency>
38
Stephane Frenotaaf13f82006-07-17 12:14:59 +000039 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000040
Stephane Frenotaaf13f82006-07-17 12:14:59 +000041 <build>
42 <plugins>
43 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000044 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000046 <extensions>true</extensions>
47 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000048 <instructions>
49 <Bundle-Name>MOSGi JMX rmiregistry</Bundle-Name>
50 <Bundle-Description>MOSGi JMX rmiregistry</Bundle-Description>
51 <Bundle-Activator>org.apache.felix.mosgi.jmx.registry.mx4j.tools.naming.NamingService</Bundle-Activator>
52 <Export-Package>${pom.artifactId}.mx4j.tools.naming</Export-Package>
53 <DynamicImport-Package>*</DynamicImport-Package>
54 </instructions>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000055 </configuration>
56 </plugin>
57 </plugins>
58 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000059
Stephane Frenotaaf13f82006-07-17 12:14:59 +000060</project>