blob: 234204d9affa7ed6306ee5d77d6411ad8812a535 [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>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00008 <packaging>bundle</packaging>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +00009 <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>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000040 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000042 <extensions>true</extensions>
43 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000044 <instructions>
45 <Bundle-Name>ShellGUIPlugin</Bundle-Name>
46 <Bundle-Description>A simple set of plugins for the ShellGUI bundle.</Bundle-Description>
47 <Bundle-Activator>org.apache.felix.shell.gui.plugin.Activator</Bundle-Activator>
48 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
49 <Export-Service>org.apache.felix.shell.gui.Plugin</Export-Service>
50 <Import-Service>org.apache.felix.shell.ShellService,org.apache.felix.bundlerepository.RepostioryAdmin</Import-Service>
51 <Private-Package>org.apache.felix.shell.gui.plugin.*</Private-Package>
52 </instructions>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000053 </configuration>
54 </plugin>
55 </plugins>
56 </build>
57</project>