blob: 47b6936ab295dd05f513c93730a37ca50595d17d [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
Stephane Frenoteeda0322006-07-21 09:38:29 +00009 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX Console Interface</name>
Stephane Frenoteeda0322006-07-21 09:38:29 +000012 <artifactId>org.apache.felix.mosgi.console.ifc</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 Frenoteeda0322006-07-21 09:38:29 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenoteeda0322006-07-21 09:38:29 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenoteeda0322006-07-21 09:38:29 +000024 <scope>provided</scope>
25 </dependency>
26 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000027
Stephane Frenoteeda0322006-07-21 09:38:29 +000028 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.felix.plugins</groupId>
32 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000033 <!--version>${felix.version}</version-->
Stephane Frenoteeda0322006-07-21 09:38:29 +000034 <extensions>true</extensions>
35 <configuration>
36 <osgiManifest>
37 <bundleName>MOSGi JMX Console Ifc</bundleName>
38 <bundleDescription>MOSGi JMX Console Ifc</bundleDescription>
Stephane Frenoteeda0322006-07-21 09:38:29 +000039 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
40 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
41 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
42 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
43 <exportPackage>
Stephane Frenotd8e65472006-09-25 15:00:22 +000044 ${pom.artifactId};specification-version="1.0.0"
Stephane Frenoteeda0322006-07-21 09:38:29 +000045 </exportPackage>
46 </osgiManifest>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000051
Stephane Frenoteeda0322006-07-21 09:38:29 +000052</project>