blob: 8e7b81675795586ead6ab00bbd3d2147af0ca829 [file] [log] [blame]
Stephane Frenoteeda0322006-07-21 09:38:29 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenoteeda0322006-07-21 09:38:29 +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 Frenoteeda0322006-07-21 09:38:29 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenoteeda0322006-07-21 09:38:29 +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 Console Interface</name>
Stephane Frenoteeda0322006-07-21 09:38:29 +000012 <artifactId>org.apache.felix.mosgi.console.ifc</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 Frenoteeda0322006-07-21 09:38:29 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenoteeda0322006-07-21 09:38:29 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenoteeda0322006-07-21 09:38:29 +000024 <scope>provided</scope>
25 </dependency>
26 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000027
Stephane Frenoteeda0322006-07-21 09:38:29 +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 Frenoteeda0322006-07-21 09:38:29 +000033 <extensions>true</extensions>
34 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000035 <instructions>
36 <Bundle-Name>MOSGi JMX Console Ifc</Bundle-Name>
37 <Bundle-Description>MOSGi JMX Console Ifc</Bundle-Description>
38 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
39 <Export-Package>${pom.artifactId}</Export-Package>
40 </instructions>
Stephane Frenoteeda0322006-07-21 09:38:29 +000041 </configuration>
42 </plugin>
43 </plugins>
44 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000045
Stephane Frenoteeda0322006-07-21 09:38:29 +000046</project>