blob: 63c5813bc433d9837d1e80718ebeab6f3d8d3c78 [file] [log] [blame]
Stephane Frenota4365ab2006-07-21 11:31:50 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8.0-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>MOSGi JMX Console GUI component</name>
10 <artifactId>org.apache.felix.mosgi.console.component</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi.core</artifactId>
15 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
33 <osgiManifest>
34 <bundleName>MOSGi JMX Console main GUI component</bundleName>
35 <bundleDescription>MOSGi JMX Console main GUI component</bundleDescription>
36 <bundleActivator>auto-detect</bundleActivator>
37 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
38 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
39 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
40 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
41 <importPackage>
42 org.apache.felix.mosgi.console.ifc;specification-version="1.0.0",
43 javax.management;specification-version="1.0.0",
44 javax.swing;specification-version="1.0.0",
45 javax.swing.table;specification-version="1.0.0",
46 org.osgi.framework;specification-version="1.0.0"
47 </importPackage>
48 </osgiManifest>
49 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53</project>