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> |
Stephane Frenot | 5095408 | 2007-06-28 14:37:13 +0000 | [diff] [blame] | 10 | <packaging>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 | 0afc763 | 2006-12-22 10:45:14 +0000 | [diff] [blame] | 13 | <version>0.9.0-incubator-SNAPSHOT</version> |
Stephane Frenot | 5095408 | 2007-06-28 14:37:13 +0000 | [diff] [blame] | 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> |
Stephane Frenot | b91ef5b | 2007-07-03 14:43:31 +0000 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>mx4j</groupId> |
| 43 | <artifactId>mx4j-jmx</artifactId> |
| 44 | <version>3.0.1</version> |
| 45 | <scope>provided</scope> |
| 46 | </dependency> |
| 47 | |
| 48 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 49 | </dependencies> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 50 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 51 | <build> |
| 52 | <plugins> |
| 53 | <plugin> |
Stephane Frenot | 5095408 | 2007-06-28 14:37:13 +0000 | [diff] [blame] | 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>maven-bundle-plugin</artifactId> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 56 | <extensions>true</extensions> |
| 57 | <configuration> |
Stephane Frenot | 5095408 | 2007-06-28 14:37:13 +0000 | [diff] [blame] | 58 | <instructions> |
| 59 | <Bundle-Name>MOSGi JMX MBean for obr interaction</Bundle-Name> |
| 60 | <Bundle-Description>MOSGi JMX MBean for obr interaction</Bundle-Description> |
| 61 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 62 | <Bundle-Activator>org.apache.felix.mosgi.managedelements.obrprobe.ObrProbe</Bundle-Activator> |
| 63 | <Export-Package>${pom.artifactId}</Export-Package> |
| 64 | </instructions> |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 65 | </configuration> |
| 66 | </plugin> |
| 67 | </plugins> |
| 68 | </build> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 69 | |
Stephane Frenot | 593bac3 | 2006-08-30 12:42:49 +0000 | [diff] [blame] | 70 | </project> |