blob: 8e0377af4e8b26d330b03d677bed43ca06a8b7ae [file] [log] [blame]
Stephane Frenoteeda0322006-07-21 09:38:29 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenoteeda0322006-07-21 09:38:29 +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 Frenoteeda0322006-07-21 09:38:29 +000013 <modelVersion>4.0.0</modelVersion>
14 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000015 <name>Apache Felix MOSGi JMX Console Interface</name>
Stephane Frenoteeda0322006-07-21 09:38:29 +000016 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000017 <version>0.9.0-SNAPSHOT</version>
18
Stephane Frenoteeda0322006-07-21 09:38:29 +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 Frenoteeda0322006-07-21 09:38:29 +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 Frenoteeda0322006-07-21 09:38:29 +000030 <scope>provided</scope>
31 </dependency>
32 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000033
Stephane Frenoteeda0322006-07-21 09:38:29 +000034 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix.plugins</groupId>
38 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000039 <version>${felix.version}</version>
Stephane Frenoteeda0322006-07-21 09:38:29 +000040 <extensions>true</extensions>
41 <configuration>
42 <osgiManifest>
43 <bundleName>MOSGi JMX Console Ifc</bundleName>
44 <bundleDescription>MOSGi JMX Console Ifc</bundleDescription>
Stephane Frenoteeda0322006-07-21 09:38:29 +000045 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
46 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
47 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
48 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
49 <exportPackage>
Stephane Frenotd8e65472006-09-25 15:00:22 +000050 ${pom.artifactId};specification-version="1.0.0"
Stephane Frenoteeda0322006-07-21 09:38:29 +000051 </exportPackage>
52 </osgiManifest>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000057
Stephane Frenoteeda0322006-07-21 09:38:29 +000058</project>