blob: 15b0f40e5f6319eb26188ba76fb41236c08a9589 [file] [log] [blame]
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8.0-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +00008 <name>OSGi R4 Compendium Bundle</name>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +00009 <artifactId>org.osgi.compendium</artifactId>
10 <packaging>osgi-bundle</packaging>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000011 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000014 <artifactId>org.osgi.core</artifactId>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000015 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>javax.servlet</groupId>
20 <artifactId>javax.servlet</artifactId>
21 <version>2.1</version>
22 <scope>provided</scope>
23 </dependency>
24 <dependency>
25 <groupId>javax.microedition</groupId>
26 <artifactId>javax.microedition</artifactId>
27 <version>1.0.4</version>
28 <scope>provided</scope>
29 </dependency>
30 </dependencies>
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.felix.plugins</groupId>
35 <artifactId>maven-osgi-plugin</artifactId>
36 <version>${pom.version}</version>
37 <extensions>true</extensions>
38 <configuration>
39 <osgiManifest>
40 <bundleName>osgi.compendium</bundleName>
41 <bundleVendor>OSGi Alliance</bundleVendor>
42 <!--<bundleVersion>4</bundleVersion>-->
43 <bundleSymbolicName>osgi.compendium</bundleSymbolicName>
44 <bundleDescription>OSGi Service Platform Release 4 Compendium Interfaces and Classes.</bundleDescription>
45 <!--<bundleCopyright>Copyright (c) OSGi Alliance (2000, 2005). All Rights Reserved.</bundleCopyright>-->
46 <bundleCategory>osgi</bundleCategory>
47 <!--<bundleDocUrl>http://www.osgi.org/</bundleDocUrl>-->
48 <exportPackage>org.osgi.service.cm ;specification-version="1.2",org.osgi.service.component ;specification-version="1.0",org.osgi.service.device ;specification-version="1.1",org.osgi.service.event ;specification-version="1.0.1",org.osgi.service.http ;specification-version="1.2",org.osgi.service.io ;specification-version="1.0",org.osgi.service.log ;specification-version="1.3",org.osgi.service.metatype ;specification-version="1.1",org.osgi.service.prefs ;specification-version="1.1",org.osgi.service.provisioning ;specification-version="1.1",org.osgi.service.upnp ;specification-version="1.1",org.osgi.service.useradmin ;specification-version="1.1",org.osgi.service.wireadmin ;specification-version="1.0",org.osgi.util.measurement ;specification-version="1.0",org.osgi.util.position ;specification-version="1.0",org.osgi.util.tracker ;specification-version="1.3.1",org.osgi.util.xml ;specification-version="1.0"</exportPackage>
49 <dynamicImportPackage>*</dynamicImportPackage>
50 </osgiManifest>
51 </configuration>
52 </plugin>
53 </plugins>
54 </build>
55</project>