blob: a0a10aa8f895a95fdf6cc68f7902ba2a650a41ca [file] [log] [blame]
Carsten Ziegeler3a66ebc2007-07-11 10:46:36 +00001<?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 Ziegeler4fec0962008-01-11 16:13:31 +000020<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 Offermans516d38d2006-03-25 20:46:19 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Carsten Ziegelerb7251fa2008-01-16 07:37:24 +000024 <version>1.0.2</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000025 <relativePath>../pom/pom.xml</relativePath>
Marcel Offermans516d38d2006-03-25 20:46:19 +000026 </parent>
27 <modelVersion>4.0.0</modelVersion>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000028 <packaging>bundle</packaging>
Marcel Offermans516d38d2006-03-25 20:46:19 +000029 <name>Apache Felix Dependency Manager</name>
Marcel Offermansf038e8d2008-01-30 10:44:55 +000030 <version>1.1.0-SNAPSHOT</version>
Marcel Offermans516d38d2006-03-25 20:46:19 +000031 <artifactId>org.apache.felix.dependencymanager</artifactId>
32 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez9d022372006-04-03 15:10:12 +000035 <artifactId>org.osgi.core</artifactId>
Marcel Offermansf038e8d2008-01-30 10:44:55 +000036 <version>1.0.0</version>
Marcel Offermans516d38d2006-03-25 20:46:19 +000037 <scope>provided</scope>
38 </dependency>
Marcel Offermans56db6d32007-06-06 09:11:21 +000039 <dependency>
40 <groupId>${pom.groupId}</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegelerc340ecf2008-01-28 07:21:59 +000042 <version>1.0.0</version>
Marcel Offermans56db6d32007-06-06 09:11:21 +000043 <scope>provided</scope>
44 </dependency>
Marcel Offermans516d38d2006-03-25 20:46:19 +000045 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000049 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000051 <version>1.4.0</version>
Marcel Offermans516d38d2006-03-25 20:46:19 +000052 <extensions>true</extensions>
53 <configuration>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000054 <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 Ziegelercf6e51b2008-04-17 06:33:59 +000058 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000059 <Export-Package>org.apache.felix.dependencymanager</Export-Package>
60 <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package>
61 </instructions>
Marcel Offermans516d38d2006-03-25 20:46:19 +000062 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66</project>