blob: 4b7c5fd99a3281faa699170cb053731caec4bed7 [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>
6 <version>0.8.0-SNAPSHOT</version>
7 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
9 <properties>
10 <felix.version>0.8.0-SNAPSHOT</felix.version>
11 <mosgi.jmx.agent.version>0.9.0-SNAPSHOT</mosgi.jmx.agent.version>
12 <mosgi.jmx.registry.version>0.9.0-SNAPSHOT</mosgi.jmx.registry.version>
13 </properties>
14
Stephane Frenot410b1f62006-07-20 09:35:19 +000015 <modelVersion>4.0.0</modelVersion>
16 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000017 <name>Apache Felix MOSGi JMX rmiconnector</name>
Stephane Frenot410b1f62006-07-20 09:35:19 +000018 <artifactId>org.apache.felix.mosgi.jmx.rmiconnector</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000019 <version>0.9.0-SNAPSHOT</version>
20
Stephane Frenot410b1f62006-07-20 09:35:19 +000021 <dependencies>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000025 <version>${felix.version}</version>
Stephane Frenot410b1f62006-07-20 09:35:19 +000026 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>${pom.groupId}</groupId>
30 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000031 <version>${felix.version}</version>
Stephane Frenot410b1f62006-07-20 09:35:19 +000032 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>${pom.groupId}</groupId>
36 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000037 <version>${mosgi.jmx.agent.version}</version>
Stephane Frenot410b1f62006-07-20 09:35:19 +000038 <scope>provided</scope>
39 </dependency>
40 <dependency>
41 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000043 <version>${mosgi.jmx.registry.version}</version>
Stephane Frenot410b1f62006-07-20 09:35:19 +000044 <scope>provided</scope>
45 </dependency>
46 <dependency>
47 <groupId>${pom.groupId}</groupId>
48 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000049 <version>${felix.version}</version>
Stephane Frenot410b1f62006-07-20 09:35:19 +000050 <scope>provided</scope>
51 </dependency>
52 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000053
Stephane Frenot410b1f62006-07-20 09:35:19 +000054 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.felix.plugins</groupId>
58 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000059 <version>${felix.version}</version>
Stephane Frenot410b1f62006-07-20 09:35:19 +000060 <extensions>true</extensions>
61 <configuration>
62 <osgiManifest>
63 <bundleName>MOSGi JMX-MX4J RMI Connector</bundleName>
64 <bundleDescription>MOSGi JMX-MX4J RMI Connector</bundleDescription>
65 <bundleActivator>auto-detect</bundleActivator>
66 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
67 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
68 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
69 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
70 <exportPackage>
Stephane Frenotab672472006-08-29 13:29:31 +000071 org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.provider.rmi;specification-version="1.0.0"
Stephane Frenot410b1f62006-07-20 09:35:19 +000072 </exportPackage>
Stephane Frenotab672472006-08-29 13:29:31 +000073 <importPackage>
74 org.osgi.service.log;specification-version="1.0.0",
75 org.osgi.framework;specification-version="1.0.0",
76 org.apache.felix.mosgi.jmx.registry.mx4j.tools.naming;specification-version="1.0.0",
77 org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0",
78 javax.management;specification-version="1.0.0",
79 javax.management.loading;specification-version="1.0.0",
80 javax.management.remote;specification-version="1.0.0",
81 javax.management.remote.rmi;specification-version="1.0.0",
82 javax.naming;specification-version="1.0.0",
83 javax.security.auth;specification-version="1.0.0"
84 </importPackage>
Stephane Frenot410b1f62006-07-20 09:35:19 +000085 </osgiManifest>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000090
Stephane Frenot410b1f62006-07-20 09:35:19 +000091</project>