blob: e27e791f488742a925f35eee3a9701954e296c96 [file] [log] [blame]
Stephane Frenot4cdf3c62006-07-21 11:01:24 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot4cdf3c62006-07-21 11:01:24 +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 Frenot4cdf3c62006-07-21 11:01:24 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenot4cdf3c62006-07-21 11:01:24 +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 Main GUI</name>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000012 <artifactId>org.apache.felix.mosgi.console.gui</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000013 <groupId>org.apache.felix</groupId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000014 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000015
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000020 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
Stephane Frenote8c7a982006-09-28 15:46:53 +000028 <groupId>${pom.groupId}</groupId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000029 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000030 <scope>provided</scope>
31 </dependency>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000035 <scope>provided</scope>
36 </dependency>
37 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000038
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000039 <build>
40 <plugins>
41 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000042 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000044 <extensions>true</extensions>
45 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000046 <instructions>
47 <Bundle-Name>MOSGi JMX Console main GUI</Bundle-Name>
48 <Bundle-Description>MOSGi JMX Console main GUI</Bundle-Description>
49 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
50 <Bundle-Activator>org.apache.felix.mosgi.console.gui.Activator</Bundle-Activator>
51 <Private-Package>${pom.artifactId}</Private-Package>
52 </instructions>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000053 </configuration>
54 </plugin>
55 </plugins>
56 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000057
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000058</project>