Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 1 | <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 Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 8 | <packaging>osgi-bundle</packaging> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 9 | <name>Apache Felix Shell Service</name> |
| 10 | <artifactId>org.apache.felix.shell</artifactId> |
| 11 | <dependencies> |
| 12 | <dependency> |
| 13 | <groupId>${pom.groupId}</groupId> |
| 14 | <artifactId>org.osgi</artifactId> |
| 15 | <version>${pom.version}</version> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 16 | <scope>provided</scope> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 17 | </dependency> |
| 18 | </dependencies> |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix.plugins</groupId> |
| 23 | <artifactId>maven-osgi-plugin</artifactId> |
| 24 | <version>${pom.version}</version> |
| 25 | <extensions>true</extensions> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 26 | <configuration> |
Alex Karasulu | bfd9996 | 2006-03-07 02:35:38 +0000 | [diff] [blame] | 27 | <osgiManifest> |
| 28 | <bundleName>ShellService</bundleName> |
| 29 | <bundleDescription>A simple command shell service for Felix (or any other OSGi framework).</bundleDescription> |
| 30 | <bundleActivator>org.apache.felix.shell.impl.Activator</bundleActivator> |
| 31 | <bundleDocUrl>http://oscar-osgi.sf.net/obr2/shell/</bundleDocUrl> |
| 32 | <bundleSource>http://oscar-osgi.sf.net/obr2/shell/org.apache.felix.shell.impl-src.jar</bundleSource> |
| 33 | <bundleSymbolicName>org.apache.felix.shell.impl</bundleSymbolicName> |
| 34 | <importPackage>org.osgi.framework, org.osgi.service.startlevel, org.osgi.service.packageadmin</importPackage> |
| 35 | <exportPackage>org.apache.felix.shell; specification-version="1.0.0", org.ungoverned.osgi.service.shell; specification-version="1.0.0"</exportPackage> |
| 36 | <exportService>org.apache.felix.shell.ShellService, org.ungoverned.osgi.service.shell.ShellService</exportService> |
| 37 | <importService>org.osgi.service.startlevel.StartLevel, org.osgi.service.packageadmin.PackageAdmin</importService> |
| 38 | </osgiManifest> |
Alex Karasulu | 07d2049 | 2006-03-06 15:35:44 +0000 | [diff] [blame] | 39 | </configuration> |
| 40 | </plugin> |
| 41 | </plugins> |
| 42 | </build> |
| 43 | </project> |