blob: 772d2b55a00950d5d94bba293f46bce29bea03df [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>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenot0f068b62006-08-30 11:12:48 +00009 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-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>
41 <groupId>org.apache.felix.plugins</groupId>
42 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000043 <!--version>${felix.version}</version-->
Stephane Frenot0f068b62006-08-30 11:12:48 +000044 <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>
Stephane Frenotd8e65472006-09-25 15:00:22 +000068
Stephane Frenot0f068b62006-08-30 11:12:48 +000069</project>