blob: d3922fdecfd44bd604ec6a2b17d5e079f42badb0 [file] [log] [blame]
Stephane Frenot593bac32006-08-30 12:42:49 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot593bac32006-08-30 12:42:49 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Karl Pauls8f1955b2006-12-06 16:43:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot593bac32006-08-30 12:42:49 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenot593bac32006-08-30 12:42:49 +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 obr interaction</name>
Stephane Frenot593bac32006-08-30 12:42:49 +000013 <artifactId>org.apache.felix.mosgi.managedelements.obrprobe</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000014 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenot50954082007-06-28 14:37:13 +000015
Stephane Frenot593bac32006-08-30 12:42:49 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000030 <scope>provided</scope>
31 </dependency>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000035 <scope>provided</scope>
36 </dependency>
37 <dependency>
38 <groupId>${pom.groupId}</groupId>
39 <artifactId>org.apache.felix.bundlerepository</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000040 <scope>provided</scope>
41 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000042 <dependency>
43 <groupId>mx4j</groupId>
44 <artifactId>mx4j-jmx</artifactId>
45 <version>3.0.1</version>
46 <scope>provided</scope>
47 </dependency>
48
49
Stephane Frenot593bac32006-08-30 12:42:49 +000050 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000051
Stephane Frenot593bac32006-08-30 12:42:49 +000052 <build>
53 <plugins>
54 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000055 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000057 <extensions>true</extensions>
58 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000059 <instructions>
60 <Bundle-Name>MOSGi JMX MBean for obr interaction</Bundle-Name>
61 <Bundle-Description>MOSGi JMX MBean for obr interaction</Bundle-Description>
62 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
63 <Bundle-Activator>org.apache.felix.mosgi.managedelements.obrprobe.ObrProbe</Bundle-Activator>
64 <Export-Package>${pom.artifactId}</Export-Package>
65 </instructions>
Stephane Frenot593bac32006-08-30 12:42:49 +000066 </configuration>
67 </plugin>
68 </plugins>
69 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000070
Stephane Frenot593bac32006-08-30 12:42:49 +000071</project>