blob: a566824f90c924c97249f794b96fbd4828ffa42c [file] [log] [blame]
Stephane Frenotd8b72682006-08-31 13:31:05 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenotd8b72682006-08-31 13:31:05 +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
Stephane Frenotd8b72682006-08-31 13:31:05 +00009 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX MBean for obr interaction</name>
Stephane Frenotd8b72682006-08-31 13:31:05 +000012 <artifactId>org.apache.felix.mosgi.managedelements.memoryprobe</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000013 <version>0.9.0-SNAPSHOT</version>
14
Stephane Frenotd8b72682006-08-31 13:31:05 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8b72682006-08-31 13:31:05 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotd8b72682006-08-31 13:31:05 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenotd8b72682006-08-31 13:31:05 +000029 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotd8b72682006-08-31 13:31:05 +000034 <scope>provided</scope>
35 </dependency>
36 <dependency>
37 <groupId>${pom.groupId}</groupId>
38 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
Stephane Frenotd8b72682006-08-31 13:31:05 +000039 <scope>provided</scope>
40 </dependency>
41 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000042
Stephane Frenotd8b72682006-08-31 13:31:05 +000043 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.felix.plugins</groupId>
47 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000048 <!--version>${felix.version}</version-->
Stephane Frenotd8b72682006-08-31 13:31:05 +000049 <extensions>true</extensions>
50 <configuration>
51 <osgiManifest>
52 <bundleName>MOSGi JMX MBean for memory supervision</bundleName>
53 <bundleDescription>MOSGi JMX MBean for memory supervision</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 <importPackage>
60 org.osgi.framework;specification-version="1.0.0",
61 javax.management;specification-version="1.0.0",
62 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
63 </importPackage>
64 </osgiManifest>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000069
Stephane Frenotd8b72682006-08-31 13:31:05 +000070</project>