blob: e16724e4baeb0976105d2d8d25866f3e5e15d84e [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"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix</artifactId>
22 <version>1.0.4</version>
Marcel Offermans2e0c5a22009-11-21 19:27:38 +000023 <relativePath>../../pom/pom.xml</relativePath>
Marcel Offermans89080042009-11-21 17:59:33 +000024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>bundle</packaging>
27 <name>Apache Felix Dependency Manager</name>
28 <version>3.0.0-SNAPSHOT</version>
29 <artifactId>org.apache.felix.dependencymanager</artifactId>
30 <dependencies>
31 <dependency>
Marcel Offermansc7a43ae2009-11-24 16:02:10 +000032 <groupId>org.osgi</groupId>
Marcel Offermans89080042009-11-21 17:59:33 +000033 <artifactId>org.osgi.core</artifactId>
Marcel Offermansa3cfdeb2009-12-08 09:01:23 +000034 <version>4.1.0</version>
Marcel Offermans89080042009-11-21 17:59:33 +000035 </dependency>
36 <dependency>
Marcel Offermansc7a43ae2009-11-24 16:02:10 +000037 <groupId>org.osgi</groupId>
Marcel Offermans89080042009-11-21 17:59:33 +000038 <artifactId>org.osgi.compendium</artifactId>
Marcel Offermansa3cfdeb2009-12-08 09:01:23 +000039 <version>4.1.0</version>
Marcel Offermans89080042009-11-21 17:59:33 +000040 </dependency>
Marcel Offermans89080042009-11-21 17:59:33 +000041 </dependencies>
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>1.4.0</version>
48 <extensions>true</extensions>
49 <configuration>
50 <instructions>
51 <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName>
52 <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name>
Marcel Offermans37523f62009-12-08 10:18:54 +000053 <Bundle-Description>A bundle that provides a run-time service dependency manager.</Bundle-Description>
Marcel Offermans89080042009-11-21 17:59:33 +000054 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Marcel Offermans37523f62009-12-08 10:18:54 +000055 <Export-Package>org.apache.felix.dm;version="3.0.0",org.apache.felix.dm.service;version="3.0.0",org.apache.felix.dm.management;version="3.0.0",org.apache.felix.dm.dependencies;version="3.0.0",org.apache.felix.dm.resources;version="3.0.0"</Export-Package>
Pierre De Ropbea0f512009-12-04 23:08:39 +000056 <Import-Package>!org.apache.felix.dm,!org.apache.felix.dm.service,!org.apache.felix.dm.management,!org.apache.felix.dm.dependencies,!org.apache.felix.dm.resources,*</Import-Package>
Pierre De Rop69d04c32010-03-06 22:23:57 +000057 <Private-Package>org.apache.felix.dm.impl,org.apache.felix.dm.impl.dependencies,org.apache.felix.dm.impl.tracker,org.apache.felix.dm.impl.metatype</Private-Package>
Marcel Offermans98c43f72010-03-03 15:30:01 +000058 <!-- Uncomment this line to include source code in the bundle.-->
Marcel Offermans63e969f2010-01-05 14:59:32 +000059 <Include-Resource>src/main/java</Include-Resource>
Marcel Offermans98c43f72010-03-03 15:30:01 +000060 <!-- -->
Marcel Offermans89080042009-11-21 17:59:33 +000061 </instructions>
62 </configuration>
63 </plugin>
Marcel Offermans89080042009-11-21 17:59:33 +000064 </plugins>
65 </build>
66 <scm>
67 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</connection>
68 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</developerConnection>
69 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</url>
70 </scm>
71</project>