blob: 17a3bd09aae022cd9845f5c69cc4c8adda974314 [file] [log] [blame]
Stephane Frenot1cee87d2006-07-17 12:14:31 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot1cee87d2006-07-17 12:14:31 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Richard S. Halld2118752006-12-22 16:59:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenot1cee87d2006-07-17 12:14:31 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenot1cee87d2006-07-17 12:14:31 +00009 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX agent</name>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000012 <artifactId>org.apache.felix.mosgi.jmx.agent</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 Frenot1cee87d2006-07-17 12:14:31 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000029 <scope>provided</scope>
30 </dependency>
31 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000032
Stephane Frenot1cee87d2006-07-17 12:14:31 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.felix.plugins</groupId>
37 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000038 <!--version>${felix.version}</version-->
Stephane Frenot1cee87d2006-07-17 12:14:31 +000039 <extensions>true</extensions>
40 <configuration>
41 <osgiManifest>
42 <bundleName>MOSGi JMX-MX4J Agent Service</bundleName>
43 <bundleDescription>MOSGi JMX-MX4J Agent Service</bundleDescription>
44 <bundleActivator>auto-detect</bundleActivator>
45 <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",
51 org.apache.felix.mosgi.jmx.agent.mx4j.server;specification-version="1.0.0",
52 org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor;specification-version="1.0.0",
53 org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0"
Stephane Frenot1cee87d2006-07-17 12:14:31 +000054 </exportPackage>
Stephane Frenotab672472006-08-29 13:29:31 +000055 <importPackage>
56 org.osgi.service.log;specification-version="1.0.0",
57 org.osgi.framework;specification-version="1.0.0",
58 javax.management;specification-version="1.0.0",
59 javax.management.loading;specification-version="1.0.0"
60 </importPackage>
Stephane Frenot1cee87d2006-07-17 12:14:31 +000061 </osgiManifest>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000066
Stephane Frenot1cee87d2006-07-17 12:14:31 +000067</project>