blob: d7bc87c44074a6fc8523fe2e8156d6386f300132 [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>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000037 <dependency>
38 <groupId>mx4j</groupId>
39 <artifactId>mx4j-jmx</artifactId>
40 <version>3.0.1</version>
41 <scope>provided</scope>
42 </dependency>
43 <dependency>
44 <groupId>mx4j</groupId>
45 <artifactId>mx4j-remote</artifactId>
46 <version>3.0.1</version>
47 <scope>provided</scope>
48 </dependency>
49
50
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000051 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000052
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000053 <build>
54 <plugins>
55 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000056 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000058 <extensions>true</extensions>
59 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000060 <instructions>
61 <Bundle-Name>MOSGi JMX Console main GUI</Bundle-Name>
62 <Bundle-Description>MOSGi JMX Console main GUI</Bundle-Description>
63 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
64 <Bundle-Activator>org.apache.felix.mosgi.console.gui.Activator</Bundle-Activator>
65 <Private-Package>${pom.artifactId}</Private-Package>
66 </instructions>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000067 </configuration>
68 </plugin>
69 </plugins>
70 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000071
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000072</project>