Carsten Ziegeler | 3a66ebc | 2007-07-11 10:46:36 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
Carsten Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 20 | <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"> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix</artifactId> |
Carsten Ziegeler | b7251fa | 2008-01-16 07:37:24 +0000 | [diff] [blame] | 24 | <version>1.0.2</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 25 | <relativePath>../pom/pom.xml</relativePath> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 28 | <packaging>bundle</packaging> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 29 | <name>Apache Felix Dependency Manager</name> |
Marcel Offermans | f038e8d | 2008-01-30 10:44:55 +0000 | [diff] [blame] | 30 | <version>1.1.0-SNAPSHOT</version> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 31 | <artifactId>org.apache.felix.dependencymanager</artifactId> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 9d02237 | 2006-04-03 15:10:12 +0000 | [diff] [blame] | 35 | <artifactId>org.osgi.core</artifactId> |
Marcel Offermans | f038e8d | 2008-01-30 10:44:55 +0000 | [diff] [blame] | 36 | <version>1.0.0</version> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 37 | <scope>provided</scope> |
| 38 | </dependency> |
Marcel Offermans | 56db6d3 | 2007-06-06 09:11:21 +0000 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>${pom.groupId}</groupId> |
| 41 | <artifactId>org.osgi.compendium</artifactId> |
Carsten Ziegeler | c340ecf | 2008-01-28 07:21:59 +0000 | [diff] [blame] | 42 | <version>1.0.0</version> |
Marcel Offermans | 56db6d3 | 2007-06-06 09:11:21 +0000 | [diff] [blame] | 43 | <scope>provided</scope> |
| 44 | </dependency> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 45 | </dependencies> |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 49 | <groupId>org.apache.felix</groupId> |
| 50 | <artifactId>maven-bundle-plugin</artifactId> |
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 51 | <version>1.4.0</version> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 52 | <extensions>true</extensions> |
| 53 | <configuration> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 54 | <instructions> |
| 55 | <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName> |
| 56 | <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name> |
| 57 | <Bundle-Description>A bundle that provides a run-time service dependency manager.</Bundle-Description> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 58 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Richard S. Hall | 9cb48fc | 2007-05-31 14:49:19 +0000 | [diff] [blame] | 59 | <Export-Package>org.apache.felix.dependencymanager</Export-Package> |
| 60 | <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package> |
| 61 | </instructions> |
Marcel Offermans | 516d38d | 2006-03-25 20:46:19 +0000 | [diff] [blame] | 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | </project> |