blob: 8c3c322259d7473ca071e674f72cc13d8f22865b [file] [log] [blame]
Stephane Frenot548dc232006-07-20 15:04:58 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot548dc232006-07-20 15:04:58 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +00006 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot548dc232006-07-20 15:04:58 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenot548dc232006-07-20 15:04:58 +000010 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000011 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000012 <name>Apache Felix MOSGi JMX remotelogger</name>
Stephane Frenot548dc232006-07-20 15:04:58 +000013 <artifactId>org.apache.felix.mosgi.jmx.remotelogger</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000015
Stephane Frenot548dc232006-07-20 15:04:58 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot548dc232006-07-20 15:04:58 +000021 <scope>provided</scope>
22 </dependency>
23 <dependency>
24 <groupId>${pom.groupId}</groupId>
25 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000026 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot548dc232006-07-20 15:04:58 +000027 <scope>provided</scope>
28 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000029 <dependency>
30 <groupId>mx4j</groupId>
31 <artifactId>mx4j-jmx</artifactId>
32 <version>3.0.1</version>
33 <scope>provided</scope>
34 </dependency>
35
Stephane Frenot548dc232006-07-20 15:04:58 +000036 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000037
Stephane Frenot548dc232006-07-20 15:04:58 +000038 <build>
39 <plugins>
40 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000041 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000043 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot548dc232006-07-20 15:04:58 +000044 <extensions>true</extensions>
45 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000046 <instructions>
47 <Bundle-Name>MOSGi JMX remote logger</Bundle-Name>
48 <Bundle-Description>MOSGi JMX remote logger</Bundle-Description>
49 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
50 <Bundle-Activator>org.apache.felix.mosgi.jmx.remotelogger.Logger</Bundle-Activator>
51 <Private-Package>${pom.artifactId}.*</Private-Package>
52 </instructions>
Stephane Frenot548dc232006-07-20 15:04:58 +000053 </configuration>
54 </plugin>
55 </plugins>
56 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000057
Stephane Frenot548dc232006-07-20 15:04:58 +000058</project>