blob: 017e8a3dc974c58de6dca6ed5ccde4fc9adecb15 [file] [log] [blame]
<project>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix</artifactId>
<version>0.8.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>osgi-bundle</packaging>
<name>Apache Felix Shell Text Interface</name>
<artifactId>org.apache.felix.shell.tui</artifactId>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${pom.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.apache.felix.shell</artifactId>
<version>${pom.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix.plugins</groupId>
<artifactId>maven-osgi-plugin</artifactId>
<version>${pom.version}</version>
<extensions>true</extensions>
<configuration>
<osgiManifest>
<bundleName>ShellTUI</bundleName>
<bundleDescription>A simple textual user interface for Felix' shell service.</bundleDescription>
<bundleActivator>org.apache.felix.shell.tui.Activator</bundleActivator>
<bundleDocUrl>http://oscar-osgi.sf.net/obr2/shelltui/</bundleDocUrl>
<bundleSource>http://oscar-osgi.sf.net/obr2/shelltui/org.apache.felix.shell.tui-src.jar</bundleSource>
<bundleSymbolicName>org.apache.felix.shell.tui</bundleSymbolicName>
<importPackage>org.osgi.framework, org.apache.felix.shell</importPackage>
<importService>org.apache.felix.shell.ShellService</importService>
</osgiManifest>
</configuration>
</plugin>
</plugins>
</build>
</project>