blob: 10eb4d8e9fd8af6c87c7506f0b7ffc8ee5acf132 [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>
Michael E. Rodriguez8efde692006-04-03 18:33:30 +000019 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000020 <artifactId>javax.servlet</artifactId>
Michael E. Rodriguez8efde692006-04-03 18:33:30 +000021 <version>${pom.version}</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000022 <scope>provided</scope>
23 </dependency>
24 <dependency>
Richard S. Hall33b07d12006-10-18 22:02:38 +000025 <groupId>org.apache.felix</groupId>
26 <artifactId>org.osgi.foundation</artifactId>
27 <version>${pom.version}</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000028 <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>
Michael E. Rodriguez29d82832006-04-02 06:31:13 +000042 <bundleVersion>4</bundleVersion>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000043 <bundleSymbolicName>osgi.compendium</bundleSymbolicName>
44 <bundleDescription>OSGi Service Platform Release 4 Compendium Interfaces and Classes.</bundleDescription>
Michael E. Rodriguez29d82832006-04-02 06:31:13 +000045 <bundleCopyright>Copyright (c) OSGi Alliance (2000, 2005). All Rights Reserved.</bundleCopyright>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000046 <bundleCategory>osgi</bundleCategory>
Michael E. Rodriguez29d82832006-04-02 06:31:13 +000047 <bundleDocUrl>http://www.osgi.org/</bundleDocUrl>
Richard S. Hall33b07d12006-10-18 22:02:38 +000048 <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.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.2",org.osgi.util.xml ;specification-version="1.0"</exportPackage>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000049 <dynamicImportPackage>*</dynamicImportPackage>
50 </osgiManifest>
51 </configuration>
52 </plugin>
53 </plugins>
54 </build>
Marcel Offermansa99c7d62006-09-02 12:56:13 +000055</project>