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