blob: 54030fbfca1369000b4c93c24b34ce9e78efeff5 [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>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot0f068b62006-08-30 11:12:48 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenot0f068b62006-08-30 11:12:48 +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 MBean for OSGi bundles management</name>
Stephane Frenot0f068b62006-08-30 11:12:48 +000013 <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes</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 Frenot0f068b62006-08-30 11:12:48 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000030 <scope>provided</scope>
31 </dependency>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000035 <scope>provided</scope>
36 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000037 <dependency>
38 <groupId>mx4j</groupId>
39 <artifactId>mx4j-jmx</artifactId>
40 <version>3.0.1</version>
41 <scope>provided</scope>
42 </dependency>
43
Stephane Frenot0f068b62006-08-30 11:12:48 +000044 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000045
Stephane Frenot0f068b62006-08-30 11:12:48 +000046 <build>
47 <plugins>
48 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000049 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000051 <extensions>true</extensions>
52 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000053 <instructions>
54 <Bundle-Name>MOSGi JMX MBean for OSGi bundles management</Bundle-Name>
55 <Bundle-Description>MOSGi JMX MBean for OSGi bundles management</Bundle-Description>
56 <Bundle-Activator>org.apache.felix.mosgi.managedelements.bundlesprobes.BundlesProbes</Bundle-Activator>
57 <Export-Package>${pom.artifactId}</Export-Package>
58 </instructions>
Stephane Frenot0f068b62006-08-30 11:12:48 +000059 </configuration>
60 </plugin>
61 </plugins>
62 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000063
Stephane Frenot0f068b62006-08-30 11:12:48 +000064</project>