blob: 1399bfde2cbce7db876243bda39cb60d67928ef1 [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>
5 <version>0.8.0-SNAPSHOT</version>
6 </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>
30 <bundleActivator>org.apache.felix.shell.gui.impl.Activator</bundleActivator>
31 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/shellgui/</bundleDocUrl>
Richard S. Hall2e3db7d2006-04-05 09:00:24 +000032 <bundleUrl>http://oscar-osgi.sf.net/obr2/shellgui/org.apache.felix.shell.gui.jar</bundleUrl>
Richard S. Hall308c71e2006-04-04 12:42:45 +000033 <bundleSource>http://oscar-osgi.sf.net/obr2/shellgui/org.apache.felix.shell.gui-src.jar</bundleSource>
34 <bundleSymbolicName>org.apache.felix.shell.gui</bundleSymbolicName>
Richard S. Hall2e3db7d2006-04-05 09:00:24 +000035 <importPackage>org.osgi.framework,javax.swing,javax.swing.event</importPackage>
Richard S. Hall308c71e2006-04-04 12:42:45 +000036 <exportPackage>org.apache.felix.shell.gui; specification-version="1.0.0"</exportPackage>
37 </osgiManifest>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42</project>