blob: c868e818fbd66886f28a4f3b133884fd3f07eb0a [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>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenoteeda0322006-07-21 09:38:29 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenoteeda0322006-07-21 09:38:29 +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 Console Interface</name>
Stephane Frenoteeda0322006-07-21 09:38:29 +000013 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000014 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000015
Stephane Frenoteeda0322006-07-21 09:38:29 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Stephane Frenoteeda0322006-07-21 09:38:29 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenoteeda0322006-07-21 09:38:29 +000025 <scope>provided</scope>
26 </dependency>
27 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000028
Stephane Frenoteeda0322006-07-21 09:38:29 +000029 <build>
30 <plugins>
31 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000032 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenoteeda0322006-07-21 09:38:29 +000034 <extensions>true</extensions>
35 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000036 <instructions>
37 <Bundle-Name>MOSGi JMX Console Ifc</Bundle-Name>
38 <Bundle-Description>MOSGi JMX Console Ifc</Bundle-Description>
39 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
40 <Export-Package>${pom.artifactId}</Export-Package>
41 </instructions>
Stephane Frenoteeda0322006-07-21 09:38:29 +000042 </configuration>
43 </plugin>
44 </plugins>
45 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000046
Stephane Frenoteeda0322006-07-21 09:38:29 +000047</project>