blob: 10dc3d55abd6d4bdb0ef92fdc9a7b28ffbf6c460 [file] [log] [blame]
Richard S. Hall308c71e2006-04-04 12:42:45 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hallf7a49172006-12-06 16:23:17 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Richard S. Hall308c71e2006-04-04 12:42:45 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Shell GUI</name>
10 <artifactId>org.apache.felix.shell.gui</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 </dependencies>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix.plugins</groupId>
23 <artifactId>maven-osgi-plugin</artifactId>
24 <version>${pom.version}</version>
25 <extensions>true</extensions>
26 <configuration>
27 <osgiManifest>
28 <bundleName>ShellGUI</bundleName>
29 <bundleDescription>A simple plugin-oriented GUI shell.</bundleDescription>
Richard S. Hall9beb33e2006-06-07 13:13:30 +000030 <bundleActivator>auto-detect</bundleActivator>
Richard S. Hallb2db3be2006-04-06 12:32:46 +000031 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
32 <bundleUrl>http://oscar-osgi.sf.net/obr2/shellgui/${pom.artifactId}-${pom.version}.jar</bundleUrl>
33 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
34 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Richard S. Hallb2db3be2006-04-06 12:32:46 +000035 <exportPackage>${pom.artifactId}; specification-version="1.0.0"</exportPackage>
Richard S. Hall308c71e2006-04-04 12:42:45 +000036 </osgiManifest>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41</project>