blob: c299d2de5514fbf12c103e2911805827b075d595 [file] [log] [blame]
Stuart McCulloch285fcc22007-09-24 19:54:42 +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.
18-->
Stuart McCullochb4f31532008-01-03 13:19:15 +000019<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">
Stuart McCulloch285fcc22007-09-24 19:54:42 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000023 <version>1.0.4</version>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000024 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
26 <organization>
27 <name>OSGi Alliance</name>
28 <url>http://www.osgi.org/</url>
29 </organization>
30 <modelVersion>4.0.0</modelVersion>
31 <name>OSGi OBR Service API</name>
32 <description>OSGi OBR Service API</description>
33 <artifactId>org.osgi.service.obr</artifactId>
Karl Pauls04c15772008-04-22 12:13:58 +000034 <version>1.1.0-SNAPSHOT</version>
Stuart McCulloch756832e2008-02-10 17:37:50 +000035 <packaging>bundle</packaging>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000036 <dependencies>
37 <dependency>
Stuart McCullochbd328cb2008-01-28 04:09:32 +000038 <groupId>org.apache.felix</groupId>
Stuart McCullocha9a68412007-12-19 09:23:00 +000039 <artifactId>org.osgi.core</artifactId>
Richard S. Hallf5a813c2008-11-19 18:55:40 +000040 <version>1.0.1</version>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000041 </dependency>
42 </dependencies>
Stuart McCulloch756832e2008-02-10 17:37:50 +000043 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000048 <version>1.4.0</version>
Stuart McCulloch756832e2008-02-10 17:37:50 +000049 <extensions>true</extensions>
50 <configuration>
51 <instructions>
52 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
53 <Export-Package>${pom.artifactId}</Export-Package>
Stuart McCulloch756832e2008-02-10 17:37:50 +000054 <Bundle-Version>1</Bundle-Version>
55 <Bundle-Copyright>Copyright (c) OSGi Alliance (2000, 2008). All Rights Reserved.</Bundle-Copyright>
56 <Bundle-Category>osgi</Bundle-Category>
57 </instructions>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
Stuart McCulloch285fcc22007-09-24 19:54:42 +000062</project>