blob: d63697700634647a8e87829d3ddef52510e81fa2 [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>
Richard S. Hallf7a49172006-12-06 16:23:17 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../pom/pom.xml</relativePath>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00009 <packaging>bundle</packaging>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000010 <name>Apache Felix Shell GUI Plugin</name>
11 <artifactId>org.apache.felix.shell.gui.plugin</artifactId>
12 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
15 <artifactId>org.osgi.core</artifactId>
16 <version>${pom.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
21 <artifactId>org.apache.felix.shell</artifactId>
22 <version>${pom.version}</version>
23 <scope>provided</scope>
24 </dependency>
25 <dependency>
26 <groupId>${pom.groupId}</groupId>
27 <artifactId>org.apache.felix.bundlerepository</artifactId>
28 <version>${pom.version}</version>
29 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.shell.gui</artifactId>
34 <version>${pom.version}</version>
35 <scope>provided</scope>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000041 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000043 <extensions>true</extensions>
44 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000045 <instructions>
46 <Bundle-Name>ShellGUIPlugin</Bundle-Name>
47 <Bundle-Description>A simple set of plugins for the ShellGUI bundle.</Bundle-Description>
48 <Bundle-Activator>org.apache.felix.shell.gui.plugin.Activator</Bundle-Activator>
49 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
50 <Export-Service>org.apache.felix.shell.gui.Plugin</Export-Service>
51 <Import-Service>org.apache.felix.shell.ShellService,org.apache.felix.bundlerepository.RepostioryAdmin</Import-Service>
52 <Private-Package>org.apache.felix.shell.gui.plugin.*</Private-Package>
53 </instructions>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000054 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58</project>