blob: 1705d3753c5aa0de3e8b62492a339d5bc7ff5654 [file] [log] [blame]
Marcel Offermans89080042009-11-21 17:59:33 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermanscca58bd2011-04-27 10:13:39 +00002<!--
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
Marcel Offermans89080042009-11-21 17:59:33 +000010
Marcel Offermanscca58bd2011-04-27 10:13:39 +000011 http://www.apache.org/licenses/LICENSE-2.0
Marcel Offermansecd32b02010-08-18 13:41:45 +000012
Marcel Offermanscca58bd2011-04-27 10:13:39 +000013 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-->
20<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">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix-parent</artifactId>
25 <version>1.2.0</version>
26 <relativePath>../../pom/pom.xml</relativePath>
27 </parent>
28 <properties>
29 <osgi.version>4.2.0</osgi.version>
30 </properties>
31 <name>Apache Felix Dependency Manager</name>
32 <artifactId>org.apache.felix.dependencymanager</artifactId>
Marcel Offermansbf8ef6f2011-05-10 09:58:52 +000033 <version>3.1.0-SNAPSHOT</version>
Marcel Offermanscca58bd2011-04-27 10:13:39 +000034 <packaging>bundle</packaging>
35 <dependencies>
Marcel Offermansd9668f42011-04-19 07:14:22 +000036 <dependency>
Marcel Offermanscca58bd2011-04-27 10:13:39 +000037 <groupId>org.osgi</groupId>
38 <artifactId>org.osgi.core</artifactId>
39 <version>${osgi.version}</version>
Marcel Offermansd9668f42011-04-19 07:14:22 +000040 </dependency>
Marcel Offermanscca58bd2011-04-27 10:13:39 +000041 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
44 <version>${osgi.version}</version>
45 </dependency>
46 </dependencies>
47 <build>
Marcel Offermans75177fe2011-04-29 15:40:23 +000048 <resources>
49 <resource>
50 <directory>.</directory>
51 <targetPath>META-INF</targetPath>
52 <includes>
53 <include>LICENSE*</include>
54 <include>NOTICE*</include>
55 <include>DEPENDENCIES*</include>
Marcel Offermansb6645ba2011-05-01 10:57:57 +000056 <include>*.txt</include>
Marcel Offermans75177fe2011-04-29 15:40:23 +000057 </includes>
58 </resource>
59 </resources>
Marcel Offermanscca58bd2011-04-27 10:13:39 +000060 <pluginManagement>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
65 <version>2.3.4</version>
66 <extensions>true</extensions>
67 </plugin>
68 </plugins>
69 </pluginManagement>
70 <plugins>
71 <!-- by default the dependency manager will run on any OSGi execution environment -->
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-compiler-plugin</artifactId>
75 <configuration>
76 <target>1.3</target>
77 </configuration>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-bundle-plugin</artifactId>
82 <configuration>
83 <instructions>
84 <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName>
85 <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name>
Marcel Offermans86bfb702011-04-28 22:39:29 +000086 <Bundle-Description>Provides dynamic service and component dependency management.</Bundle-Description>
Marcel Offermanscca58bd2011-04-27 10:13:39 +000087 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Marcel Offermansbf8ef6f2011-05-10 09:58:52 +000088 <Export-Package>org.apache.felix.dm;version="3.0.0";provide:=true,org.apache.felix.dm.tracker;version="3.1.0";provide:=true</Export-Package>
Marcel Offermanscca58bd2011-04-27 10:13:39 +000089 <Import-Package>*</Import-Package>
90 <Private-Package>org.apache.felix.dm.impl, org.apache.felix.dm.impl.*</Private-Package>
91 <!-- Uncomment this next line to include source code in the bundle.
92 <Include-Resource>src/main/java</Include-Resource>
Marcel Offermans5fbe3022010-11-25 13:36:23 +000093 -->
Marcel Offermanscca58bd2011-04-27 10:13:39 +000094 </instructions>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
Marcel Offermans89080042009-11-21 17:59:33 +000099</project>