blob: b198fcdf4d1030e22d12efe3b4e7cd2723e15dbd [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>
Richard S. Halld2118752006-12-22 16:59:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotcb0356f2006-07-20 09:36:47 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenotcb0356f2006-07-20 09:36:47 +00009 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX httpconnector</name>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000012 <artifactId>org.apache.felix.mosgi.jmx.httpconnector</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 Frenotcb0356f2006-07-20 09:36:47 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000029 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000034 <scope>provided</scope>
35 </dependency>
36 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000037
Stephane Frenotcb0356f2006-07-20 09:36:47 +000038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix.plugins</groupId>
42 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000043 <!--version>${felix.version}</version-->
Stephane Frenotcb0356f2006-07-20 09:36:47 +000044 <extensions>true</extensions>
45 <configuration>
46 <osgiManifest>
47 <bundleName>MOSGi JMX-MX4J http connector</bundleName>
48 <bundleDescription>MOSGi JMX-MX4J http connector</bundleDescription>
49 <bundleActivator>auto-detect</bundleActivator>
50 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
51 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
52 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
53 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotab672472006-08-29 13:29:31 +000054 <importPackage>
55 org.osgi.service.log;specification-version="1.0.0",
56 org.osgi.framework;specification-version="1.0.0",
57 org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0",
58 javax.management.loading;specification-version="1.0.0",
59 javax.management;specification-version="1.0.0",
60 org.w3c.dom;specification-version="1.0.0",
61 javax.xml.parsers;specification-version="1.0.0",
62 javax.xml.transform;specification-version="1.0.0",
63 javax.xml.transform.stream;specification-version="1.0.0",
64 javax.xml.transform.dom;specification-version="1.0.0"
65 </importPackage>
Stephane Frenotcb0356f2006-07-20 09:36:47 +000066 </osgiManifest>
67 </configuration>
68 </plugin>
69 </plugins>
70 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000071
Stephane Frenotcb0356f2006-07-20 09:36:47 +000072</project>