blob: 5f189e2eefbe9266437e73bb472e4e6eb74214b7 [file] [log] [blame]
Stephane Frenot410b1f62006-07-20 09:35:19 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot410b1f62006-07-20 09:35:19 +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 Frenot410b1f62006-07-20 09:35:19 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenot410b1f62006-07-20 09:35:19 +00009 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX rmiconnector</name>
Stephane Frenot410b1f62006-07-20 09:35:19 +000012 <artifactId>org.apache.felix.mosgi.jmx.rmiconnector</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 Frenot410b1f62006-07-20 09:35:19 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000029 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000034 <scope>provided</scope>
35 </dependency>
36 <dependency>
37 <groupId>${pom.groupId}</groupId>
38 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot410b1f62006-07-20 09:35:19 +000039 <scope>provided</scope>
40 </dependency>
41 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000042
Stephane Frenot410b1f62006-07-20 09:35:19 +000043 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.felix.plugins</groupId>
47 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000048 <!--version>${felix.version}</version-->
Stephane Frenot410b1f62006-07-20 09:35:19 +000049 <extensions>true</extensions>
50 <configuration>
51 <osgiManifest>
52 <bundleName>MOSGi JMX-MX4J RMI Connector</bundleName>
53 <bundleDescription>MOSGi JMX-MX4J RMI Connector</bundleDescription>
54 <bundleActivator>auto-detect</bundleActivator>
55 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
56 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
57 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
58 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
59 <exportPackage>
Stephane Frenotab672472006-08-29 13:29:31 +000060 org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.provider.rmi;specification-version="1.0.0"
Stephane Frenot410b1f62006-07-20 09:35:19 +000061 </exportPackage>
Stephane Frenotab672472006-08-29 13:29:31 +000062 <importPackage>
63 org.osgi.service.log;specification-version="1.0.0",
64 org.osgi.framework;specification-version="1.0.0",
65 org.apache.felix.mosgi.jmx.registry.mx4j.tools.naming;specification-version="1.0.0",
66 org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0",
67 javax.management;specification-version="1.0.0",
68 javax.management.loading;specification-version="1.0.0",
69 javax.management.remote;specification-version="1.0.0",
70 javax.management.remote.rmi;specification-version="1.0.0",
71 javax.naming;specification-version="1.0.0",
72 javax.security.auth;specification-version="1.0.0"
73 </importPackage>
Stephane Frenot410b1f62006-07-20 09:35:19 +000074 </osgiManifest>
75 </configuration>
76 </plugin>
77 </plugins>
78 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000079
Stephane Frenot410b1f62006-07-20 09:35:19 +000080</project>