blob: 9946f577a46ef75829b8b8d53de5287ff2dad695 [file] [log] [blame]
Pierre De Rop9684fed2009-12-04 20:57:14 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans89c60cc2011-04-27 10:14:59 +00002<!--
Pierre De Rop9684fed2009-12-04 20:57:14 +00003 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 -->
Marcel Offermans89c60cc2011-04-27 10:14:59 +000017<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">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix-parent</artifactId>
22 <version>1.2.0</version>
23 <relativePath>../../pom/pom.xml</relativePath>
24 </parent>
25 <properties>
26 <osgi.version>4.2.0</osgi.version>
27 </properties>
28 <name>Apache Felix Dependency Manager Compatibility</name>
29 <artifactId>org.apache.felix.dependencymanager.compat</artifactId>
Marcel Offermansd68d4592013-01-23 15:01:09 +000030 <version>3.0.2-SNAPSHOT</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000031 <packaging>bundle</packaging>
32 <dependencies>
33 <dependency>
34 <groupId>org.osgi</groupId>
35 <artifactId>org.osgi.core</artifactId>
36 <version>${osgi.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 <version>${osgi.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>${pom.groupId}</groupId>
45 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermans37b90042011-04-30 08:42:28 +000046 <version>3.0.0</version>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000047 </dependency>
48 </dependencies>
49 <build>
Marcel Offermans9dec17b2011-04-29 15:40:23 +000050 <resources>
51 <resource>
52 <directory>.</directory>
53 <targetPath>META-INF</targetPath>
54 <includes>
55 <include>LICENSE*</include>
56 <include>NOTICE*</include>
57 <include>DEPENDENCIES*</include>
Marcel Offermans5f8fb372011-05-01 10:57:57 +000058 <include>*.txt</include>
Marcel Offermans9dec17b2011-04-29 15:40:23 +000059 </includes>
60 </resource>
61 </resources>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000062 <pluginManagement>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <version>2.3.4</version>
68 <extensions>true</extensions>
69 </plugin>
70 </plugins>
71 </pluginManagement>
72 <plugins>
73 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-bundle-plugin</artifactId>
76 <configuration>
77 <instructions>
78 <Bundle-SymbolicName>org.apache.felix.dependencymanager.compat</Bundle-SymbolicName>
79 <Bundle-Name>Apache Felix Dependency Manager Compatibility</Bundle-Name>
Marcel Offermansc2664ea2011-04-28 22:39:29 +000080 <Bundle-Description>Provides compatibility with the dependency manager version 2.</Bundle-Description>
Marcel Offermans89c60cc2011-04-27 10:14:59 +000081 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
82 <Export-Package>org.apache.felix.dependencymanager"</Export-Package>
83 <Import-Package>!org.apache.felix.dependencymanager,org.apache.felix.dm;version="[3,4)",*</Import-Package>
84 <Private-Package>org.apache.felix.dependencymanager.impl</Private-Package>
85 </instructions>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
Pierre De Rop9684fed2009-12-04 20:57:14 +000090</project>