blob: 71b89578397e8c040a4f70285b8d54c8422ecd00 [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>
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. 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>
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 </dependencies>
20 <build>
21 <plugins>
22 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000023 <groupId>org.apache.felix</groupId>
24 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall308c71e2006-04-04 12:42:45 +000025 <extensions>true</extensions>
26 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000027 <instructions>
28 <Bundle-Name>ShellGUI</Bundle-Name>
29 <Bundle-Description>A simple plugin-oriented GUI shell.</Bundle-Description>
30 <Bundle-Activator>org.apache.felix.shell.gui.impl.Activator</Bundle-Activator>
31 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
32 <Export-Package>org.apache.felix.shell.gui; specification-version="1.0.0"</Export-Package>
33 <Private-Package>org.apache.felix.shell.gui.impl</Private-Package>
34 </instructions>
Richard S. Hall308c71e2006-04-04 12:42:45 +000035 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39</project>