blob: aa7b065293f55ef88f162b3c693ebed90bb50a28 [file] [log] [blame]
Pierre De Rop9684fed2009-12-04 20:57:14 +00001<?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to you under the Apache License, Version
7 2.0 (the "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 Unless required by
11 applicable law or agreed to in writing, software distributed under
12 the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
13 OR CONDITIONS OF ANY KIND, either express or implied. See the
14 License for the specific language governing permissions and
15 limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Marcel Offermanse7951e32010-08-18 13:41:45 +000018 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>dependencymanager-reactor</artifactId>
24 <version>3.0.0-SNAPSHOT</version>
25 </parent>
26
27 <name>Apache Felix Dependency Manager Compatibility</name>
28 <artifactId>org.apache.felix.dependencymanager.compat</artifactId>
29 <packaging>bundle</packaging>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.osgi</groupId>
34 <artifactId>org.osgi.core</artifactId>
35 </dependency>
36 <dependency>
37 <groupId>org.osgi</groupId>
38 <artifactId>org.osgi.compendium</artifactId>
39 </dependency>
40
41 <dependency>
42 <groupId>${pom.groupId}</groupId>
43 <artifactId>org.apache.felix.dependencymanager</artifactId>
44 </dependency>
45 </dependencies>
46
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>maven-bundle-plugin</artifactId>
52 <configuration>
53 <instructions>
54 <Bundle-SymbolicName>org.apache.felix.dependencymanager.compat</Bundle-SymbolicName>
55 <Bundle-Name>Apache Felix Dependency Manager Compatibility</Bundle-Name>
56 <Bundle-Description>A bundle that provides compatibility with old 2.x.x dependencymanager.</Bundle-Description>
57 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
58 <Export-Package>org.apache.felix.dependencymanager</Export-Package>
59 <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package>
60 <Private-Package>org.apache.felix.dependencymanager.impl</Private-Package>
61 </instructions>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
Pierre De Rop9684fed2009-12-04 20:57:14 +000066</project>