blob: 4eca1656bd601904275c6dae46c363c060a5b689 [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
Stephane Frenot548dc232006-07-20 15:04:58 +00009 <modelVersion>4.0.0</modelVersion>
10 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX remotelogger</name>
Stephane Frenot548dc232006-07-20 15:04:58 +000012 <artifactId>org.apache.felix.mosgi.jmx.remotelogger</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000013 <version>0.9.0-SNAPSHOT</version>
14
Stephane Frenot548dc232006-07-20 15:04:58 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenot548dc232006-07-20 15:04:58 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot548dc232006-07-20 15:04:58 +000024 <scope>provided</scope>
25 </dependency>
26 <!--dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.framework</artifactId>
29 <version>${pom.version}</version>
30 <scope>provided</scope>
31 </dependency-->
32 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000033
Stephane Frenot548dc232006-07-20 15:04:58 +000034 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix.plugins</groupId>
38 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000039 <!--version>${felix.version}</version-->
Stephane Frenot548dc232006-07-20 15:04:58 +000040 <extensions>true</extensions>
41 <configuration>
42 <osgiManifest>
43 <bundleName>MOSGi JMX remote logger</bundleName>
44 <bundleDescription>MOSGi JMX remote logger</bundleDescription>
45 <bundleActivator>auto-detect</bundleActivator>
46 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
47 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
48 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
49 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000050 <importPackage>
51 org.osgi.service.log;specification-version="1.0.0",
Stephane Frenot548dc232006-07-20 15:04:58 +000052 org.osgi.framework;specification-version="1.0.0",
53 javax.management;specification-version="1.0.0"
Stephane Frenotd8e65472006-09-25 15:00:22 +000054 </importPackage>
Stephane Frenot548dc232006-07-20 15:04:58 +000055 </osgiManifest>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000060
Stephane Frenot548dc232006-07-20 15:04:58 +000061</project>