blob: 413c2c4fbcb5352a2bf272c0903dbeb617030b7a [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>
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 <!--
12 Use a property to set felix version.
13 Properties can be set once on the top-level POM
14 -->
15 <mosgi.console.ifc.version>0.9.0-SNAPSHOT</mosgi.console.ifc.version>
16 </properties>
17
Stephane Frenota4365ab2006-07-21 11:31:50 +000018 <modelVersion>4.0.0</modelVersion>
19 <packaging>osgi-bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000020 <name>Apache Felix MOSGi JMX Console GUI component</name>
Stephane Frenota4365ab2006-07-21 11:31:50 +000021 <artifactId>org.apache.felix.mosgi.console.component</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000022 <version>0.9.0-SNAPSHOT</version>
23
Stephane Frenota4365ab2006-07-21 11:31:50 +000024 <dependencies>
25 <dependency>
26 <groupId>${pom.groupId}</groupId>
27 <artifactId>org.osgi.core</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000028 <version>${felix.version}</version>
29 <!-- A default value of version can be set on the top-level POM in a dependencyManagement section :
30 <dependencyManagement>
31 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.osgi.core</artifactId>
35 <version>${pom.version}</version>
36 </dependency>
37 [...]
38 </dependencies>
39 </dependencyManagement-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000040 <scope>provided</scope>
41 </dependency>
42 <dependency>
43 <groupId>${pom.groupId}</groupId>
44 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000045 <version>${mosgi.console.ifc.version}</version>
Stephane Frenota4365ab2006-07-21 11:31:50 +000046 <scope>provided</scope>
47 </dependency>
48 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000049
Stephane Frenota4365ab2006-07-21 11:31:50 +000050 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix.plugins</groupId>
54 <artifactId>maven-osgi-plugin</artifactId>
Stephane Frenotd8e65472006-09-25 15:00:22 +000055 <version>${felix.version}</version>
Stephane Frenota4365ab2006-07-21 11:31:50 +000056 <extensions>true</extensions>
57 <configuration>
58 <osgiManifest>
Stephane Frenotd8e65472006-09-25 15:00:22 +000059 <!--bundleManifestVersion>2</bundleManifestVersion-->
60 <!--bundleClassPath></bundleClassPath-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000061 <bundleName>MOSGi JMX Console main GUI component</bundleName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000062 <!--bundleVersion>
63 Default value is {pom.version}.
64 For exemple : 0.9.3-SNAPSHOT -> Bundle-Version=0.9.3.SNAPSHOT
65 But if we specify a ${*} value with extension "-SNAPSHOT" or a value with char '-'
66 it will be misunderstood
67 </bundleVersion-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000068 <bundleDescription>MOSGi JMX Console main GUI component</bundleDescription>
Stephane Frenotd8e65472006-09-25 15:00:22 +000069 <!--bundleVendor>Stephane FRENOT</bundleVendor-->
70 <!--bundleDate></bundleDate-->
71 <!--bundleUpdateLocation>
72 This value doesn't resolve "null" messages (when we update a bundle)...
73 <bundleUpdateLocation-->
74 <bundleActivator>auto-detect</bundleActivator>
Stephane Frenota4365ab2006-07-21 11:31:50 +000075 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
76 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
77 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
Stephane Frenotd8e65472006-09-25 15:00:22 +000078 <!--bundleCategory></bundleCategory-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000079 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Stephane Frenotd8e65472006-09-25 15:00:22 +000080 <!--exportPackage></exportPackage-->
81 <importPackage>
82 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0",
83 javax.management;specification-version="1.0.0",
84 javax.swing;specification-version="1.0.0",
85 javax.swing.table;specification-version="1.0.0",
86 org.osgi.framework;specification-version="1.0.0",
87 javax.swing.tree;specification-version="1.0.0"
88 </importPackage>
89 <!--dynamicImportPackage></dynamicImportPackage-->
90 <!--metadataLocation></metadataLocation-->
91 <!--bundleCopyright></bundleCopyright-->
92 <!--bundleNativeCode></bundleNativeCode-->
93 <!--bundleContactAdress></bundleContactAdress-->
94 <!--bundleRequiredExecutionEnvironment></bundleRequiredExecutionEnvironment-->
95 <!--bundleLocalization></bundleLocalization-->
96 <!--requireBundle></requireBundle-->
97 <!--fragmentHost></fragmentHost-->
98 <!--serviceComponent></serviceComponent-->
Stephane Frenota4365ab2006-07-21 11:31:50 +000099 </osgiManifest>
100 </configuration>
101 </plugin>
102 </plugins>
103 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +0000104
Stephane Frenota4365ab2006-07-21 11:31:50 +0000105</project>