blob: 7ab68bb69b54f2cc0a996a7fdaeefedeaa6dc01c [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>
6 <version>0.8.0-SNAPSHOT</version>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000010 <name>Apache Felix MOSGi JMX MBean for OSGi bundles management</name>
Stephane Frenot0f068b62006-08-30 11:12:48 +000011 <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes</artifactId>
12 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
15 <artifactId>org.osgi.core</artifactId>
16 <version>${pom.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
21 <artifactId>org.osgi.compendium</artifactId>
22 <version>${pom.version}</version>
23 <scope>provided</scope>
24 </dependency>
25 <dependency>
26 <groupId>${pom.groupId}</groupId>
27 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
28 <version>${pom.version}</version>
29 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.framework</artifactId>
34 <version>${pom.version}</version>
35 <scope>provided</scope>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix.plugins</groupId>
42 <artifactId>maven-osgi-plugin</artifactId>
43 <version>${pom.version}</version>
44 <extensions>true</extensions>
45 <configuration>
46 <osgiManifest>
47 <bundleName>MOSGi JMX MBean for OSGi bundles management</bundleName>
48 <bundleDescription>MOSGi JMX MBean for OSGi bundles management</bundleDescription>
49 <bundleActivator>auto-detect</bundleActivator>
50 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
51 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
52 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
53 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
54 <exportPackage>
55 ${pom.artifactId};specification-version="1.0.0"
56 </exportPackage>
57 <importPackage>
58 org.osgi.framework;specification-version="1.0.0",
59 org.osgi.service.log;specification-version="1.0.0",
60 javax.management;specification-version="1.0.0",
61 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
62 </importPackage>
63 </osgiManifest>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68</project>