blob: dca6f44205ba897b4a1c70ef39e583e29c8e0c22 [file] [log] [blame]
Richard S. Halle7c5c902006-11-27 14:23:28 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License. -->
Carsten Ziegelera5f663c2008-01-11 15:45:08 +000018<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000019 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix</artifactId>
Carsten Ziegeler646b9f12008-01-16 07:44:32 +000022 <version>1.0.2</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000023 <relativePath>../pom/pom.xml</relativePath>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000024 </parent>
Richard S. Halle7c5c902006-11-27 14:23:28 +000025 <organization>
26 <name>OSGi Alliance</name>
27 <url>http://www.osgi.org/</url>
28 </organization>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000029 <modelVersion>4.0.0</modelVersion>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000030 <name>OSGi R4 Compendium Bundle</name>
Richard S. Hall1da4e542006-11-02 21:45:44 +000031 <description>OSGi Service Platform Release 4 Compendium Interfaces and Classes.</description>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000032 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegeler93572fd2008-01-22 16:19:06 +000033 <version>1.0.1-SNAPSHOT</version>
Richard S. Hall1da4e542006-11-02 21:45:44 +000034 <packaging>bundle</packaging>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000035 <dependencies>
36 <dependency>
37 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguezd70c2912006-03-30 19:57:31 +000038 <artifactId>org.osgi.core</artifactId>
Carsten Ziegeler74ebd922007-12-20 09:24:55 +000039 <version>1.0.0</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000040 </dependency>
41 <dependency>
Michael E. Rodriguez8efde692006-04-03 18:33:30 +000042 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000043 <artifactId>javax.servlet</artifactId>
Carsten Ziegeler029c08f2008-01-12 18:49:03 +000044 <version>1.0.0</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000045 </dependency>
46 <dependency>
Richard S. Hall33b07d12006-10-18 22:02:38 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>org.osgi.foundation</artifactId>
Carsten Ziegeler2e896c52008-01-15 07:08:30 +000049 <version>1.0.0</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000050 </dependency>
51 </dependencies>
52 <build>
53 <plugins>
54 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000055 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000056 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCullochcb8192f2008-02-18 07:37:05 +000057 <version>1.2.1</version>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000058 <extensions>true</extensions>
59 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000060 <instructions>
Richard S. Halle7c5c902006-11-27 14:23:28 +000061 <Bundle-SymbolicName>org.osgi.compendium</Bundle-SymbolicName>
Richard S. Halla1f2c8d2006-11-20 19:41:07 +000062 <Export-Package>org.osgi.service.cm,org.osgi.service.component,org.osgi.service.device,org.osgi.service.event,org.osgi.service.http,org.osgi.service.io,org.osgi.service.log,org.osgi.service.metatype,org.osgi.service.prefs,org.osgi.service.provisioning,org.osgi.service.upnp,org.osgi.service.useradmin,org.osgi.service.wireadmin,org.osgi.util.measurement,org.osgi.util.position,org.osgi.util.tracker,org.osgi.util.xml</Export-Package>
Stefano Lenzi503f35e2008-02-16 16:11:27 +000063 <Import-Package />
Richard S. Halld178c1c2006-11-30 14:33:25 +000064 <DynamicImport-Package>*</DynamicImport-Package>
Richard S. Hall1da4e542006-11-02 21:45:44 +000065 <Bundle-Version>4</Bundle-Version>
Richard S. Hall1da4e542006-11-02 21:45:44 +000066 <Bundle-Copyright>Copyright (c) OSGi Alliance (2000, 2005). All Rights Reserved.</Bundle-Copyright>
67 <Bundle-Category>osgi</Bundle-Category>
Richard S. Hall1da4e542006-11-02 21:45:44 +000068 </instructions>
Michael E. Rodriguez86f57b02006-03-29 21:05:08 +000069 </configuration>
70 </plugin>
71 </plugins>
72 </build>
Marcel Offermansa99c7d62006-09-02 12:56:13 +000073</project>