blob: 6cfb05f6ea7ac2fcf96c70e954df55477306bc13 [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>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenot4cdf3c62006-07-21 11:01:24 +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 Main GUI</name>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000013 <artifactId>org.apache.felix.mosgi.console.gui</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000014 <groupId>org.apache.felix</groupId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000015 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000016
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000017 <dependencies>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.osgi.core</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000021 <scope>provided</scope>
22 </dependency>
23 <dependency>
24 <groupId>${pom.groupId}</groupId>
25 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000026 <scope>provided</scope>
27 </dependency>
28 <dependency>
Stephane Frenote8c7a982006-09-28 15:46:53 +000029 <groupId>${pom.groupId}</groupId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000030 <artifactId>org.apache.felix.framework</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000031 <scope>provided</scope>
32 </dependency>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000036 <scope>provided</scope>
37 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000038 <dependency>
39 <groupId>mx4j</groupId>
40 <artifactId>mx4j-jmx</artifactId>
41 <version>3.0.1</version>
42 <scope>provided</scope>
43 </dependency>
44 <dependency>
45 <groupId>mx4j</groupId>
46 <artifactId>mx4j-remote</artifactId>
47 <version>3.0.1</version>
48 <scope>provided</scope>
49 </dependency>
50
51
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000052 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000053
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000054 <build>
55 <plugins>
56 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000057 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000059 <extensions>true</extensions>
60 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000061 <instructions>
62 <Bundle-Name>MOSGi JMX Console main GUI</Bundle-Name>
63 <Bundle-Description>MOSGi JMX Console main GUI</Bundle-Description>
64 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
65 <Bundle-Activator>org.apache.felix.mosgi.console.gui.Activator</Bundle-Activator>
66 <Private-Package>${pom.artifactId}</Private-Package>
67 </instructions>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000068 </configuration>
69 </plugin>
70 </plugins>
71 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000072
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000073</project>