blob: 74f77f379adb318b96f562669bcf2cf4bead6fc9 [file] [log] [blame]
Alex Karasulu07d20492006-03-06 15:35:44 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
Alex Karasulu28b89b62006-03-07 02:51:53 +00008 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Shell Text Interface</name>
Alex Karasulu07d20492006-03-06 15:35:44 +000010 <artifactId>org.apache.felix.shell.tui</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi</artifactId>
15 <version>${pom.version}</version>
Alex Karasulu28b89b62006-03-07 02:51:53 +000016 <scope>provided</scope>
Alex Karasulu07d20492006-03-06 15:35:44 +000017 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.apache.felix.shell</artifactId>
21 <version>${pom.version}</version>
Alex Karasulu28b89b62006-03-07 02:51:53 +000022 <scope>provided</scope>
Alex Karasulu07d20492006-03-06 15:35:44 +000023 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
Alex Karasulu28b89b62006-03-07 02:51:53 +000028 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
Alex Karasulu07d20492006-03-06 15:35:44 +000032 <configuration>
Alex Karasulu28b89b62006-03-07 02:51:53 +000033 <osgiManifest>
34 <bundleName>ShellTUI</bundleName>
35 <bundleDescription>A simple textual user interface for Felix' shell service.</bundleDescription>
36 <bundleActivator>org.apache.felix.shell.tui.Activator</bundleActivator>
37 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/shelltui/</bundleDocUrl>
38 <bundleSource>http://oscar-osgi.sf.net/obr2/shelltui/org.apache.felix.shell.tui-src.jar</bundleSource>
39 <bundleSymbolicName>org.apache.felix.shell.tui</bundleSymbolicName>
40 <importPackage>org.osgi.framework, org.apache.felix.shell</importPackage>
41 <importService>org.apache.felix.shell.ShellService</importService>
42 </osgiManifest>
Alex Karasulu07d20492006-03-06 15:35:44 +000043 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47</project>