blob: 5e54af1cca9251e207d5ac248d6a302fc60a3f13 [file] [log] [blame]
Alex Karasulu07d20492006-03-06 15:35:44 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hall8e1e6f32006-03-09 20:37:02 +00005 <version>0.8.0-SNAPSHOT</version>
Alex Karasulu07d20492006-03-06 15:35:44 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
Alex Karasulubfd99962006-03-07 02:35:38 +00008 <packaging>osgi-bundle</packaging>
Alex Karasulu07d20492006-03-06 15:35:44 +00009 <name>Apache Felix Shell Service</name>
10 <artifactId>org.apache.felix.shell</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez963719b2006-04-03 15:04:03 +000014 <artifactId>org.osgi.core</artifactId>
Alex Karasulu07d20492006-03-06 15:35:44 +000015 <version>${pom.version}</version>
Alex Karasulubfd99962006-03-07 02:35:38 +000016 <scope>provided</scope>
Alex Karasulu07d20492006-03-06 15:35:44 +000017 </dependency>
18 </dependencies>
19 <build>
20 <plugins>
21 <plugin>
Alex Karasulubfd99962006-03-07 02:35:38 +000022 <groupId>org.apache.felix.plugins</groupId>
23 <artifactId>maven-osgi-plugin</artifactId>
24 <version>${pom.version}</version>
25 <extensions>true</extensions>
Alex Karasulu07d20492006-03-06 15:35:44 +000026 <configuration>
Alex Karasulubfd99962006-03-07 02:35:38 +000027 <osgiManifest>
28 <bundleName>ShellService</bundleName>
Richard S. Hall31267992006-04-10 11:52:37 +000029 <bundleDescription>A simple OSGi command shell service.</bundleDescription>
Richard S. Hall31267992006-04-10 11:52:37 +000030 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
31 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
32 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
33 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Richard S. Hall31267992006-04-10 11:52:37 +000034 <exportPackage>${pom.artifactId}; specification-version="1.0.0", org.ungoverned.osgi.service.shell; specification-version="1.0.0"</exportPackage>
35 <exportService>${pom.artifactId}.ShellService, org.ungoverned.osgi.service.shell.ShellService</exportService>
Alex Karasulubfd99962006-03-07 02:35:38 +000036 <importService>org.osgi.service.startlevel.StartLevel, org.osgi.service.packageadmin.PackageAdmin</importService>
37 </osgiManifest>
Alex Karasulu07d20492006-03-06 15:35:44 +000038 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42</project>