Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 1 | <project> |
Stephane Frenot | ff1bc2f | 2006-09-19 14:34:08 +0000 | [diff] [blame] | 2 | |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +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 | <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version> |
| 12 | </properties> |
| 13 | |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 14 | <modelVersion>4.0.0</modelVersion> |
| 15 | <packaging>osgi-bundle</packaging> |
Stephane Frenot | 8ed309a | 2006-08-31 14:04:13 +0000 | [diff] [blame] | 16 | <name>Apache Felix MOSGi JMX MBean for OSGi bundles management</name> |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 17 | <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 18 | <version>0.9.0-SNAPSHOT</version> |
| 19 | |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 20 | <dependencies> |
| 21 | <dependency> |
| 22 | <groupId>${pom.groupId}</groupId> |
| 23 | <artifactId>org.osgi.core</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 24 | <version>${felix.version}</version> |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 25 | <scope>provided</scope> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>${pom.groupId}</groupId> |
| 29 | <artifactId>org.osgi.compendium</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 30 | <version>${felix.version}</version> |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 31 | <scope>provided</scope> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>${pom.groupId}</groupId> |
| 35 | <artifactId>org.apache.felix.mosgi.console.ifc</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 36 | <version>${mosgi.console.ifc.version}</version> |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 37 | <scope>provided</scope> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>${pom.groupId}</groupId> |
| 41 | <artifactId>org.apache.felix.framework</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 42 | <version>${felix.version}</version> |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 43 | <scope>provided</scope> |
| 44 | </dependency> |
| 45 | </dependencies> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 46 | |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.felix.plugins</groupId> |
| 51 | <artifactId>maven-osgi-plugin</artifactId> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 52 | <version>${felix.version}</version> |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 53 | <extensions>true</extensions> |
| 54 | <configuration> |
| 55 | <osgiManifest> |
| 56 | <bundleName>MOSGi JMX MBean for OSGi bundles management</bundleName> |
| 57 | <bundleDescription>MOSGi JMX MBean for OSGi bundles management</bundleDescription> |
| 58 | <bundleActivator>auto-detect</bundleActivator> |
| 59 | <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl> |
| 60 | <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl> |
| 61 | <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource> |
| 62 | <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
| 63 | <exportPackage> |
| 64 | ${pom.artifactId};specification-version="1.0.0" |
| 65 | </exportPackage> |
| 66 | <importPackage> |
| 67 | org.osgi.framework;specification-version="1.0.0", |
| 68 | org.osgi.service.log;specification-version="1.0.0", |
| 69 | javax.management;specification-version="1.0.0", |
| 70 | org.apache.felix.mosgi.console.ifc;specification-version="1.0.0" |
| 71 | </importPackage> |
| 72 | </osgiManifest> |
| 73 | </configuration> |
| 74 | </plugin> |
| 75 | </plugins> |
| 76 | </build> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 77 | |
Stephane Frenot | 0f068b6 | 2006-08-30 11:12:48 +0000 | [diff] [blame] | 78 | </project> |