blob: ef2e916a59527215aa000c51550d938b14d4bc90 [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>
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. Hall308c71e2006-04-04 12:42:45 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00009 <packaging>bundle</packaging>
Richard S. Hall308c71e2006-04-04 12:42:45 +000010 <name>Apache Felix Shell GUI</name>
11 <artifactId>org.apache.felix.shell.gui</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000012 <version>0.9.0-SNAPSHOT</version>
Richard S. Hall308c71e2006-04-04 12:42:45 +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. Hall308c71e2006-04-04 12:42:45 +000018 <scope>provided</scope>
19 </dependency>
20 </dependencies>
21 <build>
22 <plugins>
23 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000024 <groupId>org.apache.felix</groupId>
25 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000026 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall308c71e2006-04-04 12:42:45 +000027 <extensions>true</extensions>
28 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000029 <instructions>
30 <Bundle-Name>ShellGUI</Bundle-Name>
31 <Bundle-Description>A simple plugin-oriented GUI shell.</Bundle-Description>
32 <Bundle-Activator>org.apache.felix.shell.gui.impl.Activator</Bundle-Activator>
33 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
34 <Export-Package>org.apache.felix.shell.gui; specification-version="1.0.0"</Export-Package>
35 <Private-Package>org.apache.felix.shell.gui.impl</Private-Package>
36 </instructions>
Richard S. Hall308c71e2006-04-04 12:42:45 +000037 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41</project>