blob: e7c76821ae25caf7309cde83afe4ce1f37b41886 [file] [log] [blame]
Stephane Frenot593bac32006-08-30 12:42:49 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot593bac32006-08-30 12:42:49 +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.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
12 </properties>
13
Stephane Frenot593bac32006-08-30 12:42:49 +000014 <modelVersion>4.0.0</modelVersion>
15 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000016 <name>Apache Felix MOSGi JMX MBean for obr interaction</name>
Stephane Frenot593bac32006-08-30 12:42:49 +000017 <artifactId>org.apache.felix.mosgi.managedelements.obrprobe</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000018 <version>0.9.0-SNAPSHOT</version>
19
Stephane Frenot593bac32006-08-30 12:42:49 +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 Frenot593bac32006-08-30 12:42:49 +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 Frenot593bac32006-08-30 12:42:49 +000031 <scope>provided</scope>
32 </dependency>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000036 <version>${mosgi.console.ifc.version}</version>
Stephane Frenot593bac32006-08-30 12:42:49 +000037 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000042 <version>${felix.version}</version>
Stephane Frenot593bac32006-08-30 12:42:49 +000043 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>${pom.groupId}</groupId>
47 <artifactId>org.apache.felix.bundlerepository</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000048 <version>${felix.version}</version>
Stephane Frenot593bac32006-08-30 12:42:49 +000049 <scope>provided</scope>
50 </dependency>
51 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000052
Stephane Frenot593bac32006-08-30 12:42:49 +000053 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.felix.plugins</groupId>
57 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000058 <version>${felix.version}</version>
Stephane Frenot593bac32006-08-30 12:42:49 +000059 <extensions>true</extensions>
60 <configuration>
61 <osgiManifest>
62 <bundleName>MOSGi JMX MBean for obr interaction</bundleName>
63 <bundleDescription>MOSGi JMX MBean for obr interaction</bundleDescription>
64 <bundleActivator>auto-detect</bundleActivator>
65 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
66 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
67 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
68 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
69 <exportPackage>
70 ${pom.artifactId};specification-version="1.0.0"
71 </exportPackage>
72 <importPackage>
73 org.osgi.framework;specification-version="1.0.0",
74 org.osgi.service.log;specification-version="1.0.0",
75 javax.management;specification-version="1.0.0",
Stephane Frenot593bac32006-08-30 12:42:49 +000076 org.osgi.service.obr,
77 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
78 </importPackage>
79 </osgiManifest>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000084
Stephane Frenot593bac32006-08-30 12:42:49 +000085</project>