blob: 195b1c7d29e2520c936ccf27f3d52e2633133ddc [file] [log] [blame]
Stephane Frenot548dc232006-07-20 15:04:58 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot548dc232006-07-20 15:04:58 +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 </properties>
12
Stephane Frenot548dc232006-07-20 15:04:58 +000013 <modelVersion>4.0.0</modelVersion>
14 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000015 <name>Apache Felix MOSGi JMX remotelogger</name>
Stephane Frenot548dc232006-07-20 15:04:58 +000016 <artifactId>org.apache.felix.mosgi.jmx.remotelogger</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000017 <version>0.9.0-SNAPSHOT</version>
18
Stephane Frenot548dc232006-07-20 15:04:58 +000019 <dependencies>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000023 <version>${felix.version}</version>
Stephane Frenot548dc232006-07-20 15:04:58 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000029 <version>${felix.version}</version>
Stephane Frenot548dc232006-07-20 15:04:58 +000030 <scope>provided</scope>
31 </dependency>
32 <!--dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.framework</artifactId>
35 <version>${pom.version}</version>
36 <scope>provided</scope>
37 </dependency-->
38 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000039
Stephane Frenot548dc232006-07-20 15:04:58 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix.plugins</groupId>
44 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000045 <version>${felix.version}</version>
Stephane Frenot548dc232006-07-20 15:04:58 +000046 <extensions>true</extensions>
47 <configuration>
48 <osgiManifest>
49 <bundleName>MOSGi JMX remote logger</bundleName>
50 <bundleDescription>MOSGi JMX remote logger</bundleDescription>
51 <bundleActivator>auto-detect</bundleActivator>
52 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
53 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
54 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
55 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000056 <importPackage>
57 org.osgi.service.log;specification-version="1.0.0",
Stephane Frenot548dc232006-07-20 15:04:58 +000058 org.osgi.framework;specification-version="1.0.0",
59 javax.management;specification-version="1.0.0"
Stephane Frenotd8e65472006-09-25 15:00:22 +000060 </importPackage>
Stephane Frenot548dc232006-07-20 15:04:58 +000061 </osgiManifest>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000066
Stephane Frenot548dc232006-07-20 15:04:58 +000067</project>