blob: f2c929bd651e74cddc806a8d3b311d0ee00e9690 [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>
6 <version>0.8.0-SNAPSHOT</version>
7 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
9 <properties>
10 <felix.version>0.8.0-SNAPSHOT</felix.version>
11 <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
12 </properties>
13
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000014 <modelVersion>4.0.0</modelVersion>
15 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000016 <name>Apache Felix MOSGi JMX Console Main GUI</name>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000017 <artifactId>org.apache.felix.mosgi.console.gui</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000018 <version>0.9.0-SNAPSHOT</version>
19
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000020 <dependencies>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000024 <version>${felix.version}</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000025 <scope>provided</scope>
26 </dependency>
27 <dependency>
28 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000030 <version>${felix.version}</version>
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.framework</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000036 <version>${felix.version}</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000037 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000042 <version>${mosgi.console.ifc.version}</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000043 <scope>provided</scope>
44 </dependency>
45 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000046
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000047 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.felix.plugins</groupId>
51 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000052 <version>${felix.version}</version>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000053 <extensions>true</extensions>
54 <configuration>
55 <osgiManifest>
56 <bundleName>MOSGi JMX Console main GUI</bundleName>
57 <bundleDescription>MOSGi JMX Console main GUI</bundleDescription>
Stephane Frenotd8e65472006-09-25 15:00:22 +000058 <bundleActivator>auto-detect</bundleActivator>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000059 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
60 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
61 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
62 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000063 <importPackage>
64 org.osgi.framework;specification-version="1.0.0",
65 javax.swing;specification-version="1.0.0",
66 javax.swing.event;specification-version="1.0.0",
67 javax.swing.tree;specification-version="1.0.0",
68 javax.management;specification-version="1.0.0",
69 javax.management.remote;specification-version="1.0.0",
70 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
71 </importPackage>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000072 </osgiManifest>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000077
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000078</project>