blob: f3adfb00b177d7d936b0197347dd3b4399c92d04 [file] [log] [blame]
Stephane Frenotcb0356f2006-07-20 09:36:47 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenotcb0356f2006-07-20 09:36:47 +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 </properties>
13
Stephane Frenotcb0356f2006-07-20 09:36:47 +000014 <modelVersion>4.0.0</modelVersion>
15 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000016 <name>Apache Felix MOSGi JMX httpconnector</name>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000017 <artifactId>org.apache.felix.mosgi.jmx.httpconnector</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000018 <version>0.9.0-SNAPSHOT</version>
19
Stephane Frenotcb0356f2006-07-20 09:36:47 +000020 <dependencies>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000024 <version>${felix.version}</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000030 <version>${felix.version}</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000031 <scope>provided</scope>
32 </dependency>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000036 <version>${felix.version}</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000037 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000042 <version>${mosgi.jmx.agent.version}</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000043 <scope>provided</scope>
44 </dependency>
45 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000046
Stephane Frenotcb0356f2006-07-20 09:36:47 +000047 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.felix.plugins</groupId>
51 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000052 <version>${felix.version}</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000053 <extensions>true</extensions>
54 <configuration>
55 <osgiManifest>
56 <bundleName>MOSGi JMX-MX4J http connector</bundleName>
57 <bundleDescription>MOSGi JMX-MX4J http connector</bundleDescription>
58 <bundleActivator>auto-detect</bundleActivator>
59 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
60 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
61 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
62 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotab672472006-08-29 13:29:31 +000063 <importPackage>
64 org.osgi.service.log;specification-version="1.0.0",
65 org.osgi.framework;specification-version="1.0.0",
66 org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0",
67 javax.management.loading;specification-version="1.0.0",
68 javax.management;specification-version="1.0.0",
69 org.w3c.dom;specification-version="1.0.0",
70 javax.xml.parsers;specification-version="1.0.0",
71 javax.xml.transform;specification-version="1.0.0",
72 javax.xml.transform.stream;specification-version="1.0.0",
73 javax.xml.transform.dom;specification-version="1.0.0"
74 </importPackage>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000075 </osgiManifest>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000080
Stephane Frenotcb0356f2006-07-20 09:36:47 +000081</project>