blob: ba0a59ed4e7685a3fb6b784fb5b4c1947b429632 [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>
Richard S. Halld2118752006-12-22 16:59:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenot548dc232006-07-20 15:04:58 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenot548dc232006-07-20 15:04:58 +00009 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000010 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi JMX remotelogger</name>
Stephane Frenot548dc232006-07-20 15:04:58 +000012 <artifactId>org.apache.felix.mosgi.jmx.remotelogger</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000013 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000014
Stephane Frenot548dc232006-07-20 15:04:58 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenot548dc232006-07-20 15:04:58 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot548dc232006-07-20 15:04:58 +000024 <scope>provided</scope>
25 </dependency>
Stephane Frenot548dc232006-07-20 15:04:58 +000026 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000027
Stephane Frenot548dc232006-07-20 15:04:58 +000028 <build>
29 <plugins>
30 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000031 <groupId>org.apache.felix</groupId>
32 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot548dc232006-07-20 15:04:58 +000033 <extensions>true</extensions>
34 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000035 <instructions>
36 <Bundle-Name>MOSGi JMX remote logger</Bundle-Name>
37 <Bundle-Description>MOSGi JMX remote logger</Bundle-Description>
38 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
39 <Bundle-Activator>org.apache.felix.mosgi.jmx.remotelogger.Logger</Bundle-Activator>
40 <Private-Package>${pom.artifactId}.*</Private-Package>
41 </instructions>
Stephane Frenot548dc232006-07-20 15:04:58 +000042 </configuration>
43 </plugin>
44 </plugins>
45 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000046
Stephane Frenot548dc232006-07-20 15:04:58 +000047</project>