Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 1 | <project> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 2 | |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 3 | <parent> |
| 4 | <groupId>org.apache.felix</groupId> |
| 5 | <artifactId>felix</artifactId> |
| 6 | <version>0.8.0-SNAPSHOT</version> |
| 7 | </parent> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 8 | |
| 9 | <properties> |
| 10 | <felix.version>0.8.0-SNAPSHOT</felix.version> |
| 11 | </properties> |
| 12 | |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <packaging>osgi-bundle</packaging> |
Stephane Frenot | 8ed309a | 2006-08-31 14:04:13 +0000 | [diff] [blame] | 15 | <name>Apache Felix MOSGi JMX remotelogger</name> |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 16 | <artifactId>org.apache.felix.mosgi.jmx.remotelogger</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 17 | <version>0.9.0-SNAPSHOT</version> |
| 18 | |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>${pom.groupId}</groupId> |
| 22 | <artifactId>org.osgi.core</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 23 | <version>${felix.version}</version> |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 24 | <scope>provided</scope> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>${pom.groupId}</groupId> |
| 28 | <artifactId>org.osgi.compendium</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 29 | <version>${felix.version}</version> |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 30 | <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 Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 39 | |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.felix.plugins</groupId> |
| 44 | <artifactId>maven-osgi-plugin</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 45 | <version>${felix.version}</version> |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 46 | <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 Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 56 | <importPackage> |
| 57 | org.osgi.service.log;specification-version="1.0.0", |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 58 | org.osgi.framework;specification-version="1.0.0", |
| 59 | javax.management;specification-version="1.0.0" |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 60 | </importPackage> |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 61 | </osgiManifest> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 66 | |
Stephane Frenot | 548dc23 | 2006-07-20 15:04:58 +0000 | [diff] [blame] | 67 | </project> |