blob: 21419d5425ee76b365231e134a3b29fb8b990e9f [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>
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 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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000015 <version>0.9.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000021 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000022 <scope>provided</scope>
23 </dependency>
24 <dependency>
25 <groupId>${pom.groupId}</groupId>
26 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000027 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000028 <scope>provided</scope>
29 </dependency>
30 <dependency>
Stephane Frenote8c7a982006-09-28 15:46:53 +000031 <groupId>${pom.groupId}</groupId>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000032 <artifactId>org.apache.felix.framework</artifactId>
Carsten Ziegelerfa25b9e2007-09-26 08:12:09 +000033 <version>1.0.0</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000034 <scope>provided</scope>
35 </dependency>
36 <dependency>
37 <groupId>${pom.groupId}</groupId>
38 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000039 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000040 <scope>provided</scope>
41 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000042 <dependency>
43 <groupId>mx4j</groupId>
44 <artifactId>mx4j-jmx</artifactId>
45 <version>3.0.1</version>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>mx4j</groupId>
50 <artifactId>mx4j-remote</artifactId>
51 <version>3.0.1</version>
52 <scope>provided</scope>
53 </dependency>
54
55
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000056 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000057
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000058 <build>
59 <plugins>
60 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000061 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000063 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000064 <extensions>true</extensions>
65 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000066 <instructions>
67 <Bundle-Name>MOSGi JMX Console main GUI</Bundle-Name>
68 <Bundle-Description>MOSGi JMX Console main GUI</Bundle-Description>
69 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
70 <Bundle-Activator>org.apache.felix.mosgi.console.gui.Activator</Bundle-Activator>
71 <Private-Package>${pom.artifactId}</Private-Package>
72 </instructions>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000073 </configuration>
74 </plugin>
75 </plugins>
76 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000077
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000078</project>