blob: 121e83392313121fd7131fbd89d948ef78a37a30 [file] [log] [blame]
Richard S. Hall54d1e2e2006-04-05 14:19:38 +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 Plugin</name>
10 <artifactId>org.apache.felix.shell.gui.plugin</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.shell</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 <dependency>
25 <groupId>${pom.groupId}</groupId>
26 <artifactId>org.apache.felix.bundlerepository</artifactId>
27 <version>${pom.version}</version>
28 <scope>provided</scope>
29 </dependency>
30 <dependency>
31 <groupId>${pom.groupId}</groupId>
32 <artifactId>org.apache.felix.shell.gui</artifactId>
33 <version>${pom.version}</version>
34 <scope>provided</scope>
35 </dependency>
36 </dependencies>
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix.plugins</groupId>
41 <artifactId>maven-osgi-plugin</artifactId>
42 <version>${pom.version}</version>
43 <extensions>true</extensions>
44 <configuration>
45 <osgiManifest>
46 <bundleName>ShellGUIPlugin</bundleName>
47 <bundleDescription>A simple set of plugins for the ShellGUI bundle.</bundleDescription>
48 <bundleActivator>org.apache.felix.shell.gui.plugin.Activator</bundleActivator>
49 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/shellguiplugin/</bundleDocUrl>
50 <bundleUrl>http://oscar-osgi.sf.net/obr2/shellguiplugin/org.apache.felix.shell.gui.plugin.jar</bundleUrl>
51 <bundleSource>http://oscar-osgi.sf.net/obr2/shellguiplugin/org.apache.felix.shell.gui.plugin-src.jar</bundleSource>
52 <bundleSymbolicName>org.apache.felix.shell.gui.plugin</bundleSymbolicName>
53 <importPackage>org.osgi.framework,javax.swing,javax.swing.event,javax.swing.table,javax.swing.tree,javax.swing.border,javax.swing.text,org.apache.felix.shell,org.apache.felix.shell.gui,org.osgi.service.obr</importPackage>
54 <exportService>org.apache.felix.shell.gui.Plugin</exportService>
55 <importService>org.apache.felix.shell.ShellService,org.apache.felix.bundlerepository.RepostioryAdmin</importService>
56 </osgiManifest>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61</project>