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