blob: c87abf976f7de3194f93d7de75411aa713ed7cb9 [file] [log] [blame]
Stephane Frenot0f068b62006-08-30 11:12:48 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +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 Frenot50954082007-06-28 14:37:13 +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 Bundles management tab for the JMX console</name>
Stephane Frenot0f068b62006-08-30 11:12:48 +000012 <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes.tab</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000013 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenot50954082007-06-28 14:37:13 +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
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 Bundles management tab for the JMX console</Bundle-Name>
55 <Bundle-Description>MOSGi Bundles management tab for the JMX console</Bundle-Description>
56 <Bundle-Activator>org.apache.felix.mosgi.managedelements.bundlesprobes.tab.BundlesProbesTabUI</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>