blob: e8422c9df98c4149d684b46b80ae71b2690d3b2f [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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00005 <version>1.1.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000012 <version>0.9.0-SNAPSHOT</version>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000013 <dependencies>
14 <dependency>
15 <groupId>${pom.groupId}</groupId>
16 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000017 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000018 <scope>provided</scope>
19 </dependency>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.apache.felix.shell</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000023 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.bundlerepository</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000029 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000030 <scope>provided</scope>
31 </dependency>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.apache.felix.shell.gui</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000035 <version>0.9.0-SNAPSHOT</version>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000036 <scope>provided</scope>
37 </dependency>
38 </dependencies>
39 <build>
40 <plugins>
41 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000042 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000044 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000045 <extensions>true</extensions>
46 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000047 <instructions>
48 <Bundle-Name>ShellGUIPlugin</Bundle-Name>
49 <Bundle-Description>A simple set of plugins for the ShellGUI bundle.</Bundle-Description>
50 <Bundle-Activator>org.apache.felix.shell.gui.plugin.Activator</Bundle-Activator>
51 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
52 <Export-Service>org.apache.felix.shell.gui.Plugin</Export-Service>
53 <Import-Service>org.apache.felix.shell.ShellService,org.apache.felix.bundlerepository.RepostioryAdmin</Import-Service>
54 <Private-Package>org.apache.felix.shell.gui.plugin.*</Private-Package>
55 </instructions>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000056 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60</project>