blob: f1983d67b2cf88d798cba75c200da38ea5b07d7e [file] [log] [blame]
Stephane Frenot410b1f62006-07-20 09:35:19 +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 rmiconnector</name>
10 <artifactId>org.apache.felix.mosgi.jmx.rmiconnector</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 <dependency>
25 <groupId>${pom.groupId}</groupId>
26 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
27 <version>${pom.version}</version>
28 <scope>provided</scope>
29 </dependency>
30 <dependency>
31 <groupId>${pom.groupId}</groupId>
32 <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId>
33 <version>${pom.version}</version>
34 <scope>provided</scope>
35 </dependency>
36 <dependency>
37 <groupId>${pom.groupId}</groupId>
38 <artifactId>org.apache.felix.framework</artifactId>
39 <version>${pom.version}</version>
40 <scope>provided</scope>
41 </dependency>
42 </dependencies>
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.felix.plugins</groupId>
47 <artifactId>maven-osgi-plugin</artifactId>
48 <version>${pom.version}</version>
49 <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>
60 org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.provider.rmi;specification-version="1.0.0"
61 </exportPackage>
62 <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.rmiconnector.mx4j.remote.provider.rmi;specification-version="1.0.0",
67 javax.management;specification-version="1.0.0",
68 javax.management.remote;specification-version="1.0.0"
69 </importPackage>
70 </osgiManifest>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
75</project>