blob: 9114d265a6f8de67664f154e8601d19e3ec4424f [file] [log] [blame]
Stephane Frenotaaf13f82006-07-17 12:14:59 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenotaaf13f82006-07-17 12:14:59 +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
9 <properties>
10 <felix.version>0.8.0-SNAPSHOT</felix.version>
11 </properties>
12
Stephane Frenotaaf13f82006-07-17 12:14:59 +000013 <modelVersion>4.0.0</modelVersion>
14 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000015 <name>Apache Felix MOSGi JMX registry</name>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000016 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000017 <version>0.9.0-SNAPSHOT</version>
18
Stephane Frenotaaf13f82006-07-17 12:14:59 +000019 <dependencies>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000023 <version>${felix.version}</version>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000029 <version>${felix.version}</version>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000030 <scope>provided</scope>
31 </dependency>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000035 <version>${felix.version}</version>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000036 <scope>provided</scope>
37 </dependency>
38 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000039
Stephane Frenotaaf13f82006-07-17 12:14:59 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix.plugins</groupId>
44 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000045 <version>${felix.version}</version>
Stephane Frenotaaf13f82006-07-17 12:14:59 +000046 <extensions>true</extensions>
47 <configuration>
48 <osgiManifest>
49 <bundleName>MOSGi JMX rmiregistry</bundleName>
50 <bundleDescription>MOSGi JMX rmiregistry</bundleDescription>
51 <bundleActivator>auto-detect</bundleActivator>
52 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
53 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
54 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
55 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
56 <exportPackage>
Stephane Frenotd8e65472006-09-25 15:00:22 +000057 ${pom.artifactId}.mx4j.tools.naming;specification-version="1.0.0"
Stephane Frenotaaf13f82006-07-17 12:14:59 +000058 </exportPackage>
59 <dynamicImportPackage>
60 *
61 </dynamicImportPackage>
62 </osgiManifest>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000067
Stephane Frenotaaf13f82006-07-17 12:14:59 +000068</project>