blob: 90125449690b8b67e60f1a14871fe19312234b34 [file] [log] [blame]
Carsten Ziegeler3a66ebc2007-07-11 10:46:36 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans238c5cb2009-11-21 16:27:05 +00002 <!--
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
Carsten Ziegeler3a66ebc2007-07-11 10:46:36 +00009
Marcel Offermans238c5cb2009-11-21 16:27:05 +000010 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">
Marcel Offermans516d38d2006-03-25 20:46:19 +000019 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000022 <version>1.0.4</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000023 <relativePath>../pom/pom.xml</relativePath>
Marcel Offermans516d38d2006-03-25 20:46:19 +000024 </parent>
25 <modelVersion>4.0.0</modelVersion>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000026 <packaging>bundle</packaging>
Marcel Offermans516d38d2006-03-25 20:46:19 +000027 <name>Apache Felix Dependency Manager</name>
Marcel Offermans85807db2009-08-11 08:45:03 +000028 <version>3.0.0-SNAPSHOT</version>
Marcel Offermans516d38d2006-03-25 20:46:19 +000029 <artifactId>org.apache.felix.dependencymanager</artifactId>
30 <dependencies>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
Michael E. Rodriguez9d022372006-04-03 15:10:12 +000033 <artifactId>org.osgi.core</artifactId>
Marcel Offermansabca7852009-01-28 20:48:16 +000034 <version>1.2.0</version>
Marcel Offermans516d38d2006-03-25 20:46:19 +000035 <scope>provided</scope>
36 </dependency>
Marcel Offermans56db6d32007-06-06 09:11:21 +000037 <dependency>
38 <groupId>${pom.groupId}</groupId>
39 <artifactId>org.osgi.compendium</artifactId>
Marcel Offermansabca7852009-01-28 20:48:16 +000040 <version>1.2.0</version>
Marcel Offermans56db6d32007-06-06 09:11:21 +000041 <scope>provided</scope>
42 </dependency>
Marcel Offermans238c5cb2009-11-21 16:27:05 +000043 <dependency>
44 <groupId>org.ops4j.pax.exam</groupId>
45 <artifactId>pax-exam</artifactId>
46 <version>1.2.0</version>
47 </dependency>
48 <dependency>
49 <groupId>org.ops4j.pax.exam</groupId>
50 <artifactId>pax-exam-container-default</artifactId>
51 <version>1.2.0</version>
52 </dependency>
53 <dependency>
54 <groupId>org.ops4j.pax.exam</groupId>
55 <artifactId>pax-exam-junit</artifactId>
56 <version>1.2.0</version>
57 </dependency>
58 <dependency>
59 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <version>4.7</version>
62 <scope>test</scope>
63 </dependency>
Marcel Offermans516d38d2006-03-25 20:46:19 +000064 </dependencies>
65 <build>
66 <plugins>
67 <plugin>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000068 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000070 <version>1.4.0</version>
Marcel Offermans516d38d2006-03-25 20:46:19 +000071 <extensions>true</extensions>
72 <configuration>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000073 <instructions>
74 <Bundle-SymbolicName>org.apache.felix.dependencymanager</Bundle-SymbolicName>
75 <Bundle-Name>Apache Felix Dependency Manager</Bundle-Name>
Marcel Offermans238c5cb2009-11-21 16:27:05 +000076 <Bundle-Description>A bundle that provides a run-time
77 service dependency manager.</Bundle-Description>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000078 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall9cb48fc2007-05-31 14:49:19 +000079 <Export-Package>org.apache.felix.dependencymanager</Export-Package>
80 <Import-Package>!org.apache.felix.dependencymanager,*</Import-Package>
81 </instructions>
Marcel Offermans516d38d2006-03-25 20:46:19 +000082 </configuration>
83 </plugin>
Marcel Offermans238c5cb2009-11-21 16:27:05 +000084 <plugin>
85 <artifactId>maven-compiler-plugin</artifactId>
86 <executions>
87 <execution>
88 <id>default-testCompile</id>
89 <configuration>
90 <source>1.5</source>
91 <target>1.5</target>
92 </configuration>
93 </execution>
94 </executions>
95 </plugin>
96 <plugin>
97 <groupId>org.ops4j.pax.exam</groupId>
98 <artifactId>maven-paxexam-plugin</artifactId>
99 <version>1.2.0</version>
100 <executions>
101 <execution>
102 <id>generate-config</id>
103 <goals>
104 <goal>generate-depends-file</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
Marcel Offermans516d38d2006-03-25 20:46:19 +0000109 </plugins>
110 </build>
Marcel Offermans2096fca2009-03-29 20:03:15 +0000111 <scm>
Marcel Offermans85807db2009-08-11 08:45:03 +0000112 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</connection>
113 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</developerConnection>
114 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.dependencymanager-3.0.0</url>
Marcel Offermans2096fca2009-03-29 20:03:15 +0000115 </scm>
Marcel Offermans516d38d2006-03-25 20:46:19 +0000116</project>