Stuart McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 1 | <!-- |
| 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 McCulloch | b4f3153 | 2008-01-03 13:19:15 +0000 | [diff] [blame] | 19 | <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 McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
Clement Escoffier | 4ae8697 | 2009-04-09 12:09:09 +0000 | [diff] [blame] | 23 | <version>1.0.4</version> |
Stuart McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 24 | <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 Pauls | 04c1577 | 2008-04-22 12:13:58 +0000 | [diff] [blame] | 34 | <version>1.1.0-SNAPSHOT</version> |
Stuart McCulloch | 756832e | 2008-02-10 17:37:50 +0000 | [diff] [blame] | 35 | <packaging>bundle</packaging> |
Stuart McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
Stuart McCulloch | bd328cb | 2008-01-28 04:09:32 +0000 | [diff] [blame] | 38 | <groupId>org.apache.felix</groupId> |
Stuart McCulloch | a9a6841 | 2007-12-19 09:23:00 +0000 | [diff] [blame] | 39 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | f5a813c | 2008-11-19 18:55:40 +0000 | [diff] [blame] | 40 | <version>1.0.1</version> |
Stuart McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 41 | </dependency> |
| 42 | </dependencies> |
Stuart McCulloch | 756832e | 2008-02-10 17:37:50 +0000 | [diff] [blame] | 43 | <build> |
| 44 | <plugins> |
| 45 | <plugin> |
| 46 | <groupId>org.apache.felix</groupId> |
| 47 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 48 | <version>1.4.0</version> |
Stuart McCulloch | 756832e | 2008-02-10 17:37:50 +0000 | [diff] [blame] | 49 | <extensions>true</extensions> |
| 50 | <configuration> |
| 51 | <instructions> |
| 52 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 53 | <Export-Package>${pom.artifactId}</Export-Package> |
Stuart McCulloch | 756832e | 2008-02-10 17:37:50 +0000 | [diff] [blame] | 54 | <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 McCulloch | 285fcc2 | 2007-09-24 19:54:42 +0000 | [diff] [blame] | 62 | </project> |