Richard S. Hall | 54d1e2e | 2006-04-05 14:19:38 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | f7a4917 | 2006-12-06 16:23:17 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../pom/pom.xml</relativePath> |
Richard S. Hall | 54d1e2e | 2006-04-05 14:19:38 +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 | 54d1e2e | 2006-04-05 14:19:38 +0000 | [diff] [blame] | 10 | <name>Apache Felix Shell GUI Plugin</name> |
| 11 | <artifactId>org.apache.felix.shell.gui.plugin</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 | <dependency> |
| 20 | <groupId>${pom.groupId}</groupId> |
| 21 | <artifactId>org.apache.felix.shell</artifactId> |
| 22 | <version>${pom.version}</version> |
| 23 | <scope>provided</scope> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>${pom.groupId}</groupId> |
| 27 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 28 | <version>${pom.version}</version> |
| 29 | <scope>provided</scope> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>${pom.groupId}</groupId> |
| 33 | <artifactId>org.apache.felix.shell.gui</artifactId> |
| 34 | <version>${pom.version}</version> |
| 35 | <scope>provided</scope> |
| 36 | </dependency> |
| 37 | </dependencies> |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | 54d1e2e | 2006-04-05 14:19:38 +0000 | [diff] [blame] | 43 | <extensions>true</extensions> |
| 44 | <configuration> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 45 | <instructions> |
| 46 | <Bundle-Name>ShellGUIPlugin</Bundle-Name> |
| 47 | <Bundle-Description>A simple set of plugins for the ShellGUI bundle.</Bundle-Description> |
| 48 | <Bundle-Activator>org.apache.felix.shell.gui.plugin.Activator</Bundle-Activator> |
| 49 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 50 | <Export-Service>org.apache.felix.shell.gui.Plugin</Export-Service> |
| 51 | <Import-Service>org.apache.felix.shell.ShellService,org.apache.felix.bundlerepository.RepostioryAdmin</Import-Service> |
| 52 | <Private-Package>org.apache.felix.shell.gui.plugin.*</Private-Package> |
| 53 | </instructions> |
Richard S. Hall | 54d1e2e | 2006-04-05 14:19:38 +0000 | [diff] [blame] | 54 | </configuration> |
| 55 | </plugin> |
| 56 | </plugins> |
| 57 | </build> |
| 58 | </project> |