blob: 0766f3a3c6a62e0ff0ed5837aefec14fc292a471 [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-->
Marcel Offermans516d38d2006-03-25 20:46:19 +000020<project>
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000024 <version>0.9.0-incubator-SNAPSHOT</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>
30 <artifactId>org.apache.felix.dependencymanager</artifactId>
31 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez9d022372006-04-03 15:10:12 +000034 <artifactId>org.osgi.core</artifactId>
Marcel Offermans516d38d2006-03-25 20:46:19 +000035 <version>${pom.version}</version>
36 <scope>provided</scope>
37 </dependency>
Marcel Offermans56db6d32007-06-06 09:11:21 +000038 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 <version>${pom.version}</version>
42 <scope>provided</scope>
43 </dependency>
Marcel Offermans516d38d2006-03-25 20:46:19 +000044 </dependencies>
45 <build>
46 <plugins>
47 <plugin>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000048 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
Marcel Offermans516d38d2006-03-25 20:46:19 +000050 <version>${pom.version}</version>
51 <extensions>true</extensions>
52 <configuration>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000053 <instructions>
54 <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName>
55 <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name>
56 <Bundle-Description>A bundle that provides a run-time service dependency manager.</Bundle-Description>
57 <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor>
58 <Export-Package>org.apache.felix.dependencymanager</Export-Package>
59 <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package>
60 </instructions>
Marcel Offermans516d38d2006-03-25 20:46:19 +000061 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65</project>