blob: 9026dd664761d1f14d6285e0be4a85428749a573 [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>
36 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000037
Stephane Frenot0f068b62006-08-30 11:12:48 +000038 <build>
39 <plugins>
40 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000041 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot0f068b62006-08-30 11:12:48 +000043 <extensions>true</extensions>
44 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000045 <instructions>
46 <Bundle-Name>MOSGi JMX MBean for OSGi bundles management</Bundle-Name>
47 <Bundle-Description>MOSGi JMX MBean for OSGi bundles management</Bundle-Description>
48 <Bundle-Activator>org.apache.felix.mosgi.managedelements.bundlesprobes.BundlesProbes</Bundle-Activator>
49 <Export-Package>${pom.artifactId}</Export-Package>
50 </instructions>
Stephane Frenot0f068b62006-08-30 11:12:48 +000051 </configuration>
52 </plugin>
53 </plugins>
54 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000055
Stephane Frenot0f068b62006-08-30 11:12:48 +000056</project>