blob: d5cc3ecb85a4af7c94433d0cb7602e108b4c3eeb [file] [log] [blame]
Marcel Offermans89080042009-11-21 17:59:33 +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 Offermansecd32b02010-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>
Marcel Offermansd9668f42011-04-19 07:14:22 +000022 <groupId>org.apache.felix</groupId>
23 <artifactId>felix-parent</artifactId>
24 <version>1.2.0</version>
25 <relativePath>../../pom/pom.xml</relativePath>
Marcel Offermansecd32b02010-08-18 13:41:45 +000026 </parent>
27
Marcel Offermansd9668f42011-04-19 07:14:22 +000028 <properties>
29 <felix.dependencymanager.version>3.0.0-SNAPSHOT</felix.dependencymanager.version>
30 <osgi.version>4.2.0</osgi.version>
31 <pax.exam.version>1.2.0</pax.exam.version>
32 </properties>
33
Marcel Offermansecd32b02010-08-18 13:41:45 +000034 <name>Apache Felix Dependency Manager</name>
35 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermansd9668f42011-04-19 07:14:22 +000036 <version>${felix.dependencymanager.version}</version>
Marcel Offermansecd32b02010-08-18 13:41:45 +000037 <packaging>bundle</packaging>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.core</artifactId>
Marcel Offermansd9668f42011-04-19 07:14:22 +000043 <version>${osgi.version}</version>
Marcel Offermansecd32b02010-08-18 13:41:45 +000044 </dependency>
45 <dependency>
46 <groupId>org.osgi</groupId>
47 <artifactId>org.osgi.compendium</artifactId>
Marcel Offermansd9668f42011-04-19 07:14:22 +000048 <version>${osgi.version}</version>
Marcel Offermansecd32b02010-08-18 13:41:45 +000049 </dependency>
Marcel Offermansd9668f42011-04-19 07:14:22 +000050
51 <!-- please remove me again -->
52 <dependency>
53 <groupId>org.eclipse.equinox</groupId>
54 <artifactId>osgi</artifactId>
55 <version>3.1.1</version>
56 <scope>provided</scope>
57 </dependency>
58
Marcel Offermansecd32b02010-08-18 13:41:45 +000059 </dependencies>
60
61 <build>
Marcel Offermansd9668f42011-04-19 07:14:22 +000062 <pluginManagement>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <version>1.4.0</version>
68 <extensions>true</extensions>
69 </plugin>
70 </plugins>
71 </pluginManagement>
72
Marcel Offermansecd32b02010-08-18 13:41:45 +000073 <plugins>
Marcel Offermansd9668f42011-04-19 07:14:22 +000074 <!-- by default the dependency manager will run on any OSGi execution environment -->
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-compiler-plugin</artifactId>
78 <configuration>
79 <target>1.3</target>
80 </configuration>
81 </plugin>
Marcel Offermansecd32b02010-08-18 13:41:45 +000082 <plugin>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>maven-bundle-plugin</artifactId>
85 <configuration>
86 <instructions>
87 <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName>
88 <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name>
89 <Bundle-Description>A bundle that provides a run-time service dependency manager.</Bundle-Description>
90 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Marcel Offermans1ed75f82010-09-08 10:07:32 +000091 <Export-Package>org.apache.felix.dm;version="3.0.0",org.apache.felix.dm.tracker;version="3.0.0"</Export-Package>
Marcel Offermansecd32b02010-08-18 13:41:45 +000092 <Import-Package>!org.apache.felix.dm,*</Import-Package>
Marcel Offermansd9668f42011-04-19 07:14:22 +000093 <Private-Package>org.apache.felix.dm.impl, org.apache.felix.dm.impl.*, org.apache.felix.dm.index</Private-Package>
Marcel Offermansecd32b02010-08-18 13:41:45 +000094 <!-- Uncomment this line to include source code in the bundle.
95 <Include-Resource>src/main/java</Include-Resource>
Marcel Offermans5fbe3022010-11-25 13:36:23 +000096 -->
Marcel Offermansecd32b02010-08-18 13:41:45 +000097 </instructions>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
102
Marcel Offermans89080042009-11-21 17:59:33 +0000103</project>