blob: b9df231fbd942e70ca13f96855dd8b2ebe7f965b [file] [log] [blame]
Marcel Offermanse7951e32010-08-18 13:41:45 +00001<?xml version="1.0" encoding="UTF-8"?>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +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
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 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-->
Marcel Offermanse7951e32010-08-18 13:41:45 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22 <modelVersion>4.0.0</modelVersion>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000023
Marcel Offermanse7951e32010-08-18 13:41:45 +000024 <packaging>pom</packaging>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000025
Marcel Offermanse7951e32010-08-18 13:41:45 +000026 <parent>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>felix</artifactId>
29 <version>1.0.4</version>
30 <relativePath>../pom/pom.xml</relativePath>
31 </parent>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000032
Marcel Offermanse7951e32010-08-18 13:41:45 +000033 <name>Apache Felix Dependency Manager Projects</name>
34 <artifactId>dependencymanager-reactor</artifactId>
35 <version>3.0.0-SNAPSHOT</version>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +000036
Marcel Offermanse7951e32010-08-18 13:41:45 +000037 <licenses>
38 <license>
39 <name>Apache License, Version 2.0</name>
40 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
41 <distribution>repo</distribution>
42 </license>
43 </licenses>
44
45 <modules>
46 <module>core</module>
47 <module>shell</module>
48 <module>compat</module>
49 <module>annotation</module>
50 <module>runtime</module>
51 <module>samples</module>
52 <module>samples.annotation</module>
53 <module>test</module>
54 </modules>
55
56 <properties>
57 <felix.dependencymanager.version>3.0.0-SNAPSHOT</felix.dependencymanager.version>
58 <osgi.version>4.1.0</osgi.version>
59 <pax.exam.version>1.2.0</pax.exam.version>
60 </properties>
61
62 <dependencyManagement>
63 <dependencies>
64 <dependency>
65 <groupId>${pom.groupId}</groupId>
66 <artifactId>org.apache.felix.dependencymanager</artifactId>
67 <version>${felix.dependencymanager.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>${pom.groupId}</groupId>
71 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
72 <version>${felix.dependencymanager.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>${pom.groupId}</groupId>
76 <artifactId>org.apache.felix.dependencymanager.runtime</artifactId>
77 <version>${felix.dependencymanager.version}</version>
78 </dependency>
79
80 <dependency>
81 <groupId>${pom.groupId}</groupId>
82 <artifactId>org.apache.felix.gogo.runtime</artifactId>
83 <version>0.6.0</version>
84 </dependency>
85 <dependency>
86 <groupId>${pom.groupId}</groupId>
87 <artifactId>org.apache.felix.shell</artifactId>
88 <version>1.4.1</version>
89 </dependency>
90
91 <dependency>
92 <groupId>org.eclipse.equinox</groupId>
93 <artifactId>osgi</artifactId>
94 <version>3.1.1</version>
95 </dependency>
96
97 <dependency>
98 <groupId>org.osgi</groupId>
99 <artifactId>org.osgi.core</artifactId>
100 <version>${osgi.version}</version>
101 </dependency>
102 <dependency>
103 <groupId>org.osgi</groupId>
104 <artifactId>org.osgi.compendium</artifactId>
105 <version>${osgi.version}</version>
106 </dependency>
107
108 <dependency>
109 <groupId>biz.aQute</groupId>
110 <artifactId>bnd</artifactId>
111 <version>0.0.401</version>
112 </dependency>
113
114 <dependency>
115 <groupId>org.ops4j.pax.exam</groupId>
116 <artifactId>pax-exam</artifactId>
117 <version>${pax.exam.version}</version>
118 </dependency>
119 <dependency>
120 <groupId>org.ops4j.pax.exam</groupId>
121 <artifactId>pax-exam-container-default</artifactId>
122 <version>${pax.exam.version}</version>
123 </dependency>
124 <dependency>
125 <groupId>org.ops4j.pax.exam</groupId>
126 <artifactId>pax-exam-junit</artifactId>
127 <version>${pax.exam.version}</version>
128 </dependency>
129
130 <dependency>
131 <groupId>org.apache.maven</groupId>
132 <artifactId>maven-plugin-api</artifactId>
133 <version>2.0</version>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.maven</groupId>
137 <artifactId>maven-project</artifactId>
138 <version>2.0.7</version>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.maven</groupId>
142 <artifactId>maven-artifact</artifactId>
143 <version>2.0.7</version>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.maven</groupId>
147 <artifactId>maven-plugin-api</artifactId>
148 <version>2.0</version>
149 </dependency>
150
151 <dependency>
152 <groupId>org.json</groupId>
153 <artifactId>json</artifactId>
154 <version>20070829</version>
155 </dependency>
156
157 <dependency>
158 <groupId>junit</groupId>
159 <artifactId>junit</artifactId>
160 <version>4.7</version>
161 </dependency>
162 </dependencies>
163 </dependencyManagement>
164
165 <build>
166 <pluginManagement>
167 <plugins>
168 <plugin>
169 <groupId>org.apache.felix</groupId>
170 <artifactId>maven-bundle-plugin</artifactId>
171 <version>1.4.0</version>
172 <extensions>true</extensions>
173 </plugin>
174
175 <plugin>
176 <groupId>${pom.groupId}</groupId>
177 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
178 <version>${felix.dependencymanager.version}</version>
179 </plugin>
180
181 <plugin>
182 <groupId>org.ops4j.pax.exam</groupId>
183 <artifactId>maven-paxexam-plugin</artifactId>
184 <version>${pax.exam.version}</version>
185 </plugin>
186 </plugins>
187 </pluginManagement>
188
189 <plugins>
190 <!-- by default the dependency manager will run on any OSGi execution environment -->
191 <plugin>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-compiler-plugin</artifactId>
194 <configuration>
195 <target>1.3</target>
196 </configuration>
197 </plugin>
198 </plugins>
199 </build>
200
201 <repositories>
202 <repository>
203 <id>maven2-repository.dev.java.net</id>
204 <name>Java.net Maven 2 Repository</name>
205 <url>http://download.java.net/maven/2</url>
206 </repository>
207
208 <repository>
209 <id>maven2-repository.biz.aQute</id>
210 <name>aQute SARL Maven 2 Repository</name>
211 <url>http://www.aqute.biz/repo</url>
212 </repository>
213 </repositories>
214
215 <scm>
216 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/dependencymanager/</connection>
217 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/dependencymanager/</developerConnection>
218 <url>http://svn.apache.org/viewvc/felix/trunk/dependencymanager/</url>
219 </scm>
Marcel Offermans4bcd2cb2009-11-21 19:27:38 +0000220</project>