blob: 0aa755cf7f9cace93e6ad80779f73e0569c59e0c [file] [log] [blame]
Richard S. Hall54d1e2e2006-04-05 14:19:38 +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. Hall54d1e2e2006-04-05 14:19:38 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Shell GUI Plugin</name>
10 <artifactId>org.apache.felix.shell.gui.plugin</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 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.apache.felix.shell</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 <dependency>
25 <groupId>${pom.groupId}</groupId>
26 <artifactId>org.apache.felix.bundlerepository</artifactId>
27 <version>${pom.version}</version>
28 <scope>provided</scope>
29 </dependency>
30 <dependency>
31 <groupId>${pom.groupId}</groupId>
32 <artifactId>org.apache.felix.shell.gui</artifactId>
33 <version>${pom.version}</version>
34 <scope>provided</scope>
35 </dependency>
36 </dependencies>
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix.plugins</groupId>
41 <artifactId>maven-osgi-plugin</artifactId>
42 <version>${pom.version}</version>
43 <extensions>true</extensions>
44 <configuration>
45 <osgiManifest>
46 <bundleName>ShellGUIPlugin</bundleName>
47 <bundleDescription>A simple set of plugins for the ShellGUI bundle.</bundleDescription>
Richard S. Hall9beb33e2006-06-07 13:13:30 +000048 <bundleActivator>auto-detect</bundleActivator>
Richard S. Hallb2db3be2006-04-06 12:32:46 +000049 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
50 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
51 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
52 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Richard S. Hall54d1e2e2006-04-05 14:19:38 +000053 <exportService>org.apache.felix.shell.gui.Plugin</exportService>
54 <importService>org.apache.felix.shell.ShellService,org.apache.felix.bundlerepository.RepostioryAdmin</importService>
55 </osgiManifest>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60</project>