Richard S. Hall | 308c71e | 2006-04-04 12:42:45 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 5 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../pom/pom.xml</relativePath> |
Richard S. Hall | 308c71e | 2006-04-04 12:42:45 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging> |
Richard S. Hall | 308c71e | 2006-04-04 12:42:45 +0000 | [diff] [blame] | 10 | <name>Apache Felix Shell GUI</name> |
| 11 | <artifactId>org.apache.felix.shell.gui</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 12 | <version>0.9.0-SNAPSHOT</version> |
Richard S. Hall | 308c71e | 2006-04-04 12:42:45 +0000 | [diff] [blame] | 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>${pom.groupId}</groupId> |
| 16 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 17 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | 308c71e | 2006-04-04 12:42:45 +0000 | [diff] [blame] | 18 | <scope>provided</scope> |
| 19 | </dependency> |
| 20 | </dependencies> |
| 21 | <build> |
| 22 | <plugins> |
| 23 | <plugin> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 24 | <groupId>org.apache.felix</groupId> |
| 25 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 26 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | 308c71e | 2006-04-04 12:42:45 +0000 | [diff] [blame] | 27 | <extensions>true</extensions> |
| 28 | <configuration> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 29 | <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. Hall | 308c71e | 2006-04-04 12:42:45 +0000 | [diff] [blame] | 37 | </configuration> |
| 38 | </plugin> |
| 39 | </plugins> |
| 40 | </build> |
| 41 | </project> |