blob: 8cdc2d3efb9c1ce16f8bc640344efe89f1cad014 [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>
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 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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.9.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>1.1.0-SNAPSHOT</version>
Stephane Frenoteeda0322006-07-21 09:38:29 +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 Frenoteeda0322006-07-21 09:38:29 +000027 <scope>provided</scope>
28 </dependency>
29 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000030
Stephane Frenoteeda0322006-07-21 09:38:29 +000031 <build>
32 <plugins>
33 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000034 <groupId>org.apache.felix</groupId>
35 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000036 <version>1.1.0-SNAPSHOT</version>
Stephane Frenoteeda0322006-07-21 09:38:29 +000037 <extensions>true</extensions>
38 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000039 <instructions>
40 <Bundle-Name>MOSGi JMX Console Ifc</Bundle-Name>
41 <Bundle-Description>MOSGi JMX Console Ifc</Bundle-Description>
42 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
43 <Export-Package>${pom.artifactId}</Export-Package>
44 </instructions>
Stephane Frenoteeda0322006-07-21 09:38:29 +000045 </configuration>
46 </plugin>
47 </plugins>
48 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000049
Stephane Frenoteeda0322006-07-21 09:38:29 +000050</project>