blob: eda3b8aa5b1886de2d4770fba40783803dd7d707 [file] [log] [blame]
Stephane Frenoteeda0322006-07-21 09:38:29 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8.0-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +00009 <name>Apache Felix MOSGi JMX Console Interface</name>
Stephane Frenoteeda0322006-07-21 09:38:29 +000010 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi.core</artifactId>
15 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.osgi.compendium</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
33 <osgiManifest>
34 <bundleName>MOSGi JMX Console Ifc</bundleName>
35 <bundleDescription>MOSGi JMX Console Ifc</bundleDescription>
Stephane Frenoteeda0322006-07-21 09:38:29 +000036 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
37 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
38 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
39 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
40 <exportPackage>
41 ${pom.artifactId};specification-version="1.0.0"
42 </exportPackage>
43 </osgiManifest>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>