Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 1 | <project> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 2 | |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 3 | <parent> |
| 4 | <groupId>org.apache.felix</groupId> |
| 5 | <artifactId>felix</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 6 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 7 | <relativePath>../../pom/pom.xml</relativePath> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 8 | </parent> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 9 | |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 10 | <modelVersion>4.0.0</modelVersion> |
Stephane Frenot | 5095408 | 2007-06-28 14:37:13 +0000 | [diff] [blame] | 11 | <packaging>bundle</packaging> |
Stephane Frenot | 8ed309a | 2006-08-31 14:04:13 +0000 | [diff] [blame] | 12 | <name>Apache Felix MOSGi JMX agent</name> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 13 | <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 14 | <version>0.9.0-SNAPSHOT</version> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 15 | |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>${pom.groupId}</groupId> |
| 19 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 20 | <version>1.1.0-SNAPSHOT</version> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 21 | <scope>provided</scope> |
| 22 | </dependency> |
| 23 | <dependency> |
| 24 | <groupId>${pom.groupId}</groupId> |
| 25 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 26 | <version>0.9.0-SNAPSHOT</version> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 27 | <scope>provided</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>${pom.groupId}</groupId> |
| 31 | <artifactId>org.apache.felix.framework</artifactId> |
Carsten Ziegeler | fa25b9e | 2007-09-26 08:12:09 +0000 | [diff] [blame] | 32 | <version>1.0.0</version> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 33 | <scope>provided</scope> |
| 34 | </dependency> |
Stephane Frenot | b91ef5b | 2007-07-03 14:43:31 +0000 | [diff] [blame] | 35 | <dependency> |
| 36 | <groupId>mx4j</groupId> |
| 37 | <artifactId>mx4j</artifactId> |
| 38 | <version>3.0.2</version> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | |
| 42 | |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 43 | </dependencies> |
Stephane Frenot | d8e6547 | 2006-09-25 15:00:22 +0000 | [diff] [blame] | 44 | |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
Stephane Frenot | 5095408 | 2007-06-28 14:37:13 +0000 | [diff] [blame] | 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 50 | <version>1.1.0-SNAPSHOT</version> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 51 | <extensions>true</extensions> |
| 52 | <configuration> |
Stephane Frenot | 5095408 | 2007-06-28 14:37:13 +0000 | [diff] [blame] | 53 | <instructions> |
| 54 | <Bundle-Name>MOSGi JMX-MX4J Agent Service</Bundle-Name> |
| 55 | <Bundle-Description>MOSGi JMX-MX4J Agent Service</Bundle-Description> |
| 56 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 57 | <Bundle-Activator>org.apache.felix.mosgi.jmx.agent.AgentActivator</Bundle-Activator> |
| 58 | <Export-Package>${pom.artifactId}, |
| 59 | org.apache.felix.mosgi.jmx.agent.mx4j.server, |
| 60 | org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor, |
| 61 | org.apache.felix.mosgi.jmx.agent.mx4j.util |
| 62 | </Export-Package> |
| 63 | <Private-Package>${pom.artifactId}.*</Private-Package> |
| 64 | </instructions> |
Stephane Frenot | 1cee87d | 2006-07-17 12:14:31 +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 | 1cee87d | 2006-07-17 12:14:31 +0000 | [diff] [blame] | 70 | </project> |