blob: ab826744a250e6f65e266cb7c3f20be6190d9269 [file] [log] [blame]
Stephane Frenot0f068b62006-08-30 11:12:48 +00001<project>
Stephane Frenotff1bc2f2006-09-19 14:34:08 +00002
Stephane Frenot0f068b62006-08-30 11:12:48 +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 Frenot0f068b62006-08-30 11:12:48 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenot0f068b62006-08-30 11:12:48 +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 MBean for OSGi bundles management</name>
Stephane Frenot0f068b62006-08-30 11:12:48 +000012 <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes</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 Frenot0f068b62006-08-30 11:12:48 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000029 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000034 <scope>provided</scope>
35 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000036 <dependency>
37 <groupId>mx4j</groupId>
38 <artifactId>mx4j-jmx</artifactId>
39 <version>3.0.1</version>
40 <scope>provided</scope>
41 </dependency>
42
Stephane Frenot0f068b62006-08-30 11:12:48 +000043 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000044
Stephane Frenot0f068b62006-08-30 11:12:48 +000045 <build>
46 <plugins>
47 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000048 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000050 <extensions>true</extensions>
51 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000052 <instructions>
53 <Bundle-Name>MOSGi JMX MBean for OSGi bundles management</Bundle-Name>
54 <Bundle-Description>MOSGi JMX MBean for OSGi bundles management</Bundle-Description>
55 <Bundle-Activator>org.apache.felix.mosgi.managedelements.bundlesprobes.BundlesProbes</Bundle-Activator>
56 <Export-Package>${pom.artifactId}</Export-Package>
57 </instructions>
Stephane Frenot0f068b62006-08-30 11:12:48 +000058 </configuration>
59 </plugin>
60 </plugins>
61 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000062
Stephane Frenot0f068b62006-08-30 11:12:48 +000063</project>