Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>0.8.0-SNAPSHOT</version> |
| 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
Stephane Frenot | 8ed309a | 2006-08-31 14:04:13 +0000 | [diff] [blame] | 9 | <name>Apache Felix MOSGi JMX agent</name> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 10 | <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId> |
| 11 | <dependencies> |
| 12 | <dependency> |
| 13 | <groupId>${pom.groupId}</groupId> |
| 14 | <artifactId>org.osgi.core</artifactId> |
| 15 | <version>${pom.version}</version> |
| 16 | <scope>provided</scope> |
| 17 | </dependency> |
| 18 | <dependency> |
| 19 | <groupId>${pom.groupId}</groupId> |
| 20 | <artifactId>org.osgi.compendium</artifactId> |
| 21 | <version>${pom.version}</version> |
| 22 | <scope>provided</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>${pom.groupId}</groupId> |
| 26 | <artifactId>org.apache.felix.framework</artifactId> |
| 27 | <version>${pom.version}</version> |
| 28 | <scope>provided</scope> |
| 29 | </dependency> |
| 30 | </dependencies> |
| 31 | <build> |
| 32 | <plugins> |
| 33 | <plugin> |
| 34 | <groupId>org.apache.felix.plugins</groupId> |
| 35 | <artifactId>maven-osgi-plugin</artifactId> |
| 36 | <version>${pom.version}</version> |
| 37 | <extensions>true</extensions> |
| 38 | <configuration> |
| 39 | <osgiManifest> |
| 40 | <bundleName>MOSGi JMX-MX4J Agent Service</bundleName> |
| 41 | <bundleDescription>MOSGi JMX-MX4J Agent Service</bundleDescription> |
| 42 | <bundleActivator>auto-detect</bundleActivator> |
| 43 | <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl> |
| 44 | <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl> |
| 45 | <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource> |
| 46 | <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
| 47 | <exportPackage> |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 48 | ${pom.artifactId};specification-version="1.0.0", |
| 49 | org.apache.felix.mosgi.jmx.agent.mx4j.server;specification-version="1.0.0", |
Stephane Frenot | 8fd85d6 | 2006-08-29 14:49:31 +0000 | [diff] [blame] | 50 | org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor;specification-version="1.0.0", |
| 51 | org.apache.felix.mosgi.jmx.agent.mx4j.util;specification-version="1.0.0" |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 52 | </exportPackage> |
Stephane Frenot | ab67247 | 2006-08-29 13:29:31 +0000 | [diff] [blame] | 53 | <importPackage> |
| 54 | org.osgi.service.log;specification-version="1.0.0", |
| 55 | org.osgi.framework;specification-version="1.0.0", |
| 56 | javax.management;specification-version="1.0.0", |
| 57 | javax.management.loading;specification-version="1.0.0" |
| 58 | </importPackage> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 59 | </osgiManifest> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | </project> |