blob: 4aa0099909e2aee0dcaeccb0fa70050e96bd84ee [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>
Richard S. Hall308c71e2006-04-04 12:42:45 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00008 <packaging>bundle</packaging>
Richard S. Hall308c71e2006-04-04 12:42:45 +00009 <name>Apache Felix Shell GUI</name>
10 <artifactId>org.apache.felix.shell.gui</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 </dependencies>
19 <build>
20 <plugins>
21 <plugin>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000022 <groupId>org.apache.felix</groupId>
23 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall308c71e2006-04-04 12:42:45 +000024 <extensions>true</extensions>
25 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000026 <instructions>
27 <Bundle-Name>ShellGUI</Bundle-Name>
28 <Bundle-Description>A simple plugin-oriented GUI shell.</Bundle-Description>
29 <Bundle-Activator>org.apache.felix.shell.gui.impl.Activator</Bundle-Activator>
30 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
31 <Export-Package>org.apache.felix.shell.gui; specification-version="1.0.0"</Export-Package>
32 <Private-Package>org.apache.felix.shell.gui.impl</Private-Package>
33 </instructions>
Richard S. Hall308c71e2006-04-04 12:42:45 +000034 </configuration>
35 </plugin>
36 </plugins>
37 </build>
38</project>