Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +0000 | [diff] [blame] | 1 | <project> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 2 | |
Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +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 | aaf13f8 | 2006-07-17 12:14:59 +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 registry</name> |
Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +0000 | [diff] [blame] | 16 | <artifactId>org.apache.felix.mosgi.jmx.registry</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 17 | <version>0.9.0-SNAPSHOT</version> |
| 18 | |
Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +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 | aaf13f8 | 2006-07-17 12:14:59 +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 | aaf13f8 | 2006-07-17 12:14:59 +0000 | [diff] [blame] | 30 | <scope>provided</scope> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>${pom.groupId}</groupId> |
| 34 | <artifactId>org.apache.felix.framework</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 35 | <version>${felix.version}</version> |
Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +0000 | [diff] [blame] | 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | </dependencies> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 39 | |
Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +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 | aaf13f8 | 2006-07-17 12:14:59 +0000 | [diff] [blame] | 46 | <extensions>true</extensions> |
| 47 | <configuration> |
| 48 | <osgiManifest> |
| 49 | <bundleName>MOSGi JMX rmiregistry</bundleName> |
| 50 | <bundleDescription>MOSGi JMX rmiregistry</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> |
| 56 | <exportPackage> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 57 | ${pom.artifactId}.mx4j.tools.naming;specification-version="1.0.0" |
Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +0000 | [diff] [blame] | 58 | </exportPackage> |
| 59 | <dynamicImportPackage> |
| 60 | * |
| 61 | </dynamicImportPackage> |
| 62 | </osgiManifest> |
| 63 | </configuration> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </build> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 67 | |
Stephane Frenot | aaf13f8 | 2006-07-17 12:14:59 +0000 | [diff] [blame] | 68 | </project> |