blob: ee2ec269db09cc12d3ce13b32b015a79f701a94a [file] [log] [blame]
Stephane Frenotcb0356f2006-07-20 09:36:47 +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>
Stephane Frenot8ed309a2006-08-31 14:04:13 +00009 <name>Apache Felix MOSGi JMX httpconnector</name>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000010 <artifactId>org.apache.felix.mosgi.jmx.httpconnector</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.framework</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.agent</artifactId>
33 <version>${pom.version}</version>
34 <scope>provided</scope>
35 </dependency>
36 </dependencies>
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix.plugins</groupId>
41 <artifactId>maven-osgi-plugin</artifactId>
42 <version>${pom.version}</version>
43 <extensions>true</extensions>
44 <configuration>
45 <osgiManifest>
46 <bundleName>MOSGi JMX-MX4J http connector</bundleName>
47 <bundleDescription>MOSGi JMX-MX4J http connector</bundleDescription>
48 <bundleActivator>auto-detect</bundleActivator>
49 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
50 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
51 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
52 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotab672472006-08-29 13:29:31 +000053 <importPackage>
54 org.osgi.service.log;specification-version="1.0.0",
55 org.osgi.framework;specification-version="1.0.0",
56 org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0",
57 javax.management.loading;specification-version="1.0.0",
58 javax.management;specification-version="1.0.0",
59 org.w3c.dom;specification-version="1.0.0",
60 javax.xml.parsers;specification-version="1.0.0",
61 javax.xml.transform;specification-version="1.0.0",
62 javax.xml.transform.stream;specification-version="1.0.0",
63 javax.xml.transform.dom;specification-version="1.0.0"
64 </importPackage>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000065 </osgiManifest>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70</project>