blob: 434b2e0295c39dd542fd352857046b351fd7d33d [file] [log] [blame]
Stephane Frenota4365ab2006-07-21 11:31:50 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenota4365ab2006-07-21 11:31:50 +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 Frenota4365ab2006-07-21 11:31:50 +00007 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00008
Stephane Frenota4365ab2006-07-21 11:31:50 +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 GUI component</name>
Stephane Frenota4365ab2006-07-21 11:31:50 +000012 <artifactId>org.apache.felix.mosgi.console.component</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000013 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000014
Stephane Frenota4365ab2006-07-21 11:31:50 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenota4365ab2006-07-21 11:31:50 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenota4365ab2006-07-21 11:31:50 +000024 <scope>provided</scope>
25 </dependency>
26 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000027
Stephane Frenota4365ab2006-07-21 11:31:50 +000028 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.felix.plugins</groupId>
32 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenote8c7a982006-09-28 15:46:53 +000033 <!--version>${felix.version}</version-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000034 <extensions>true</extensions>
35 <configuration>
36 <osgiManifest>
Stephane Frenotd8e65472006-09-25 15:00:22 +000037 <!--bundleManifestVersion>2</bundleManifestVersion-->
38 <!--bundleClassPath></bundleClassPath-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000039 <bundleName>MOSGi JMX Console main GUI component</bundleName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000040 <!--bundleVersion>
41 Default value is {pom.version}.
42 For exemple : 0.9.3-SNAPSHOT -> Bundle-Version=0.9.3.SNAPSHOT
43 But if we specify a ${*} value with extension "-SNAPSHOT" or a value with char '-'
44 it will be misunderstood
45 </bundleVersion-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000046 <bundleDescription>MOSGi JMX Console main GUI component</bundleDescription>
Stephane Frenotd8e65472006-09-25 15:00:22 +000047 <!--bundleVendor>Stephane FRENOT</bundleVendor-->
48 <!--bundleDate></bundleDate-->
49 <!--bundleUpdateLocation>
50 This value doesn't resolve "null" messages (when we update a bundle)...
51 <bundleUpdateLocation-->
52 <bundleActivator>auto-detect</bundleActivator>
Stephane Frenota4365ab2006-07-21 11:31:50 +000053 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
54 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
55 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
Stephane Frenotd8e65472006-09-25 15:00:22 +000056 <!--bundleCategory></bundleCategory-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000057 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000058 <!--exportPackage></exportPackage-->
59 <importPackage>
60 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0",
61 javax.management;specification-version="1.0.0",
62 javax.swing;specification-version="1.0.0",
63 javax.swing.table;specification-version="1.0.0",
64 org.osgi.framework;specification-version="1.0.0",
65 javax.swing.tree;specification-version="1.0.0"
66 </importPackage>
67 <!--dynamicImportPackage></dynamicImportPackage-->
68 <!--metadataLocation></metadataLocation-->
69 <!--bundleCopyright></bundleCopyright-->
70 <!--bundleNativeCode></bundleNativeCode-->
71 <!--bundleContactAdress></bundleContactAdress-->
72 <!--bundleRequiredExecutionEnvironment></bundleRequiredExecutionEnvironment-->
73 <!--bundleLocalization></bundleLocalization-->
74 <!--requireBundle></requireBundle-->
75 <!--fragmentHost></fragmentHost-->
76 <!--serviceComponent></serviceComponent-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000077 </osgiManifest>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000082
Stephane Frenota4365ab2006-07-21 11:31:50 +000083</project>