blob: a99a79b64fff0f1b9c6af85f5967e7a45ae42fa9 [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>
9 <name>MOSGi JMX Console Interface</name>
10 <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>
36 <bundleActivator>auto-detect</bundleActivator>
37 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
38 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
39 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
40 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
41 <exportPackage>
42 ${pom.artifactId};specification-version="1.0.0"
43 </exportPackage>
44 </osgiManifest>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49</project>