blob: c1140d859b6fcbe615ae1cc173a4ed1c845de514 [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>
Richard S. Halld2118752006-12-22 16:59:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8b72682006-08-31 13:31:05 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenotd8b72682006-08-31 13:31:05 +00009 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000010 <packaging>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 Frenot0afc7632006-12-22 10:45:14 +000013 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000014
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>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000041 <dependency>
42 <groupId>mx4j</groupId>
43 <artifactId>mx4j-jmx</artifactId>
44 <version>3.0.1</version>
45 <scope>provided</scope>
46 </dependency>
47
Stephane Frenotd8b72682006-08-31 13:31:05 +000048 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000049
Stephane Frenotd8b72682006-08-31 13:31:05 +000050 <build>
51 <plugins>
52 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000053 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenotd8b72682006-08-31 13:31:05 +000055 <extensions>true</extensions>
56 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000057 <instructions>
58 <Bundle-Name>MOSGi JMX MBean for memory supervision</Bundle-Name>
59 <Bundle-Description>MOSGi JMX MBean for memory supervision</Bundle-Description>
60 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
61 <Bundle-Activator>org.apache.felix.mosgi.managedelements.memoryprobe.MemoryProbe</Bundle-Activator>
62 <Private-Package>${pom.artifactId}</Private-Package>
63 </instructions>
Stephane Frenotd8b72682006-08-31 13:31:05 +000064 </configuration>
65 </plugin>
66 </plugins>
67 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000068
Stephane Frenotd8b72682006-08-31 13:31:05 +000069</project>