blob: 6a69ce969e6265e062626d17a7505e18776d6e56 [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>
10 <packaging>osgi-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>
42 <groupId>org.apache.felix.plugins</groupId>
43 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000044 <!--version>${felix.version}</version-->
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000045 <extensions>true</extensions>
46 <configuration>
47 <osgiManifest>
48 <bundleName>MOSGi JMX Console main GUI</bundleName>
49 <bundleDescription>MOSGi JMX Console main GUI</bundleDescription>
Stephane Frenotd8e65472006-09-25 15:00:22 +000050 <bundleActivator>auto-detect</bundleActivator>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000051 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
52 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
53 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
54 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000055 <importPackage>
56 org.osgi.framework;specification-version="1.0.0",
57 javax.swing;specification-version="1.0.0",
58 javax.swing.event;specification-version="1.0.0",
59 javax.swing.tree;specification-version="1.0.0",
60 javax.management;specification-version="1.0.0",
61 javax.management.remote;specification-version="1.0.0",
62 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0"
63 </importPackage>
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000064 </osgiManifest>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000069
Stephane Frenot4cdf3c62006-07-21 11:01:24 +000070</project>