blob: 6acacf53921f674b63bfc5e329cf8ced97814e22 [file] [log] [blame]
Clement Escoffiere6986562013-02-22 18:55:31 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "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
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Clement Escoffier917a0c22013-10-08 13:11:02 +000019<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/xsd/maven-4.0.0.xsd">
Clement Escoffiere6986562013-02-22 18:55:31 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000023 <version>2.1</version>
Clement Escoffiere6986562013-02-22 18:55:31 +000024 <relativePath>../../../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffier609bf5f2013-06-21 07:30:11 +000026
Clement Escoffiere6986562013-02-22 18:55:31 +000027 <modelVersion>4.0.0</modelVersion>
28 <artifactId>org.apache.felix.ipojo.manipulator.manipulator-it</artifactId>
Clement Escoffier917a0c22013-10-08 13:11:02 +000029 <version>1.11.0</version>
Clement Escoffiera00b6422013-02-26 18:35:04 +000030 <name>Apache Felix iPOJO Manipulator ~ Integration Tests</name>
Clement Escoffiere6986562013-02-22 18:55:31 +000031 <packaging>pom</packaging>
32
Clement Escoffier609bf5f2013-06-21 07:30:11 +000033 <properties>
34 <!-- Tests are enabled only when the 'test' profile is activated -->
35 <skipTestExecution>true</skipTestExecution>
36
Clement Escoffier8903b0a2013-09-22 17:55:19 +000037 <exam.version>3.0.1</exam.version>
Clement Escoffier609bf5f2013-06-21 07:30:11 +000038 <url.version>1.5.1</url.version>
39
40 <felix.version>4.2.0</felix.version>
Clement Escoffier8903b0a2013-09-22 17:55:19 +000041 <equinox.version>3.9.0.v20130529-1710</equinox.version>
42 <knoperflerfish.version>6.0.2</knoperflerfish.version>
Clement Escoffier609bf5f2013-06-21 07:30:11 +000043 </properties>
44
45 <modules>
46 <module>ipojo-manipulator-manipulation-test</module>
47 <module>ipojo-manipulator-creation-test</module>
48 <module>ipojo-manipulator-manipulation-metadata-test</module>
49 <module>online-manipulator-it</module>
50 </modules>
51
Clement Escoffiere6986562013-02-22 18:55:31 +000052 <build>
Clement Escoffiere6986562013-02-22 18:55:31 +000053 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <version>2.5.1</version>
58 <configuration>
59 <source>1.6</source>
60 <target>1.6</target>
61 </configuration>
62 </plugin>
63
64 <plugin>
65 <groupId>org.apache.servicemix.tooling</groupId>
66 <artifactId>depends-maven-plugin</artifactId>
67 <version>1.2</version>
68 <executions>
69 <execution>
70 <id>generate-config</id>
71 <goals>
72 <goal>generate-depends-file</goal>
73 </goals>
74 </execution>
75 </executions>
76 </plugin>
Clement Escoffiered4ca022013-03-13 15:27:20 +000077
78 <plugin>
79 <groupId>org.apache.rat</groupId>
80 <artifactId>apache-rat-plugin</artifactId>
81 <executions>
82 <execution>
83 <phase>verify</phase>
84 <goals>
85 <goal>check</goal>
86 </goals>
87 </execution>
88 </executions>
89 <configuration>
90 <!-- check src only (except remote resources additions) -->
91 <includes>
92 <include>src/**</include>
93 </includes>
94 <excludes>
95 <exclude>src/main/appended-resources/**</exclude>
96 <exclude>**/*.iml</exclude>
Clement Escoffier33660692013-04-12 05:48:29 +000097 <exclude>src/it/**/target/**</exclude>
Clement Escoffiered4ca022013-03-13 15:27:20 +000098 </excludes>
99 </configuration>
100 </plugin>
Clement Escoffier2c47f5f2013-06-04 19:46:29 +0000101
102 <plugin>
103 <artifactId>maven-deploy-plugin</artifactId>
104 <version>2.4</version>
105 <configuration>
106 <skip>true</skip>
107 </configuration>
108 </plugin>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000109
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-surefire-plugin</artifactId>
113 <version>2.15</version>
114 <configuration>
115 <skipTests>${skipTestExecution}</skipTests>
116 <systemPropertyVariables>
117 <!-- TIME_FACTOR can be set from the command line with -DTIME_FACTOR=9-->
118 <TIME_FACTOR>${TIME_FACTOR}</TIME_FACTOR>
Clement Escoffier7e951462013-10-04 13:11:51 +0000119 <!-- Defined by the profiles -->
120 <pax.exam.framework>${pax.exam.framework}</pax.exam.framework>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000121 </systemPropertyVariables>
122 </configuration>
123 </plugin>
Clement Escoffiere6986562013-02-22 18:55:31 +0000124 </plugins>
125
126 </build>
127
Clement Escoffiere6986562013-02-22 18:55:31 +0000128 <dependencies>
Clement Escoffiere6986562013-02-22 18:55:31 +0000129 <dependency>
130 <groupId>org.ops4j.pax.exam</groupId>
131 <artifactId>pax-exam-container-native</artifactId>
132 <version>${exam.version}</version>
133 <scope>test</scope>
134 </dependency>
135
136 <dependency>
137 <groupId>org.ops4j.pax.exam</groupId>
138 <artifactId>pax-exam-junit4</artifactId>
139 <version>${exam.version}</version>
140 <scope>test</scope>
141 </dependency>
142
143 <dependency>
144 <groupId>org.ops4j.pax.exam</groupId>
145 <artifactId>pax-exam-link-mvn</artifactId>
146 <version>${exam.version}</version>
147 <scope>test</scope>
148 </dependency>
149
150 <dependency>
151 <groupId>org.ops4j.pax.url</groupId>
152 <artifactId>pax-url-aether</artifactId>
153 <version>${url.version}</version>
154 <scope>test</scope>
155 </dependency>
156
157 <dependency>
Clement Escoffiere6986562013-02-22 18:55:31 +0000158 <groupId>ch.qos.logback</groupId>
159 <artifactId>logback-core</artifactId>
160 <version>0.9.6</version>
161 <scope>test</scope>
162 </dependency>
163
164 <dependency>
165 <groupId>ch.qos.logback</groupId>
166 <artifactId>logback-classic</artifactId>
167 <version>0.9.6</version>
168 <scope>test</scope>
169 </dependency>
170
Clement Escoffiere6986562013-02-22 18:55:31 +0000171 <dependency>
172 <groupId>junit</groupId>
173 <artifactId>junit</artifactId>
174 <version>4.9</version>
175 <scope>test</scope>
176 </dependency>
177
178 <dependency>
179 <groupId>org.mockito</groupId>
180 <artifactId>mockito-all</artifactId>
181 <version>1.9.5</version>
182 </dependency>
183
184 <dependency>
185 <groupId>org.ops4j.pax.tinybundles</groupId>
186 <artifactId>tinybundles</artifactId>
187 <version>1.0.0</version>
188 </dependency>
189
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000190 <!-- The tiny bundle extension must be before the manipulator version
191 to use the right version of the manipulator -->
192 <dependency>
193 <groupId>org.ow2.chameleon.testing</groupId>
194 <artifactId>tinybundles-ipojo</artifactId>
195 <version>0.3.0</version>
Clement Escoffierfe1775d2013-05-13 12:54:07 +0000196 <scope>test</scope>
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000197 </dependency>
198
Clement Escoffiere6986562013-02-22 18:55:31 +0000199 <!-- Define the tested version -->
200 <dependency>
201 <groupId>org.apache.felix</groupId>
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000202 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Guillaume Sauthierca551ba2013-06-03 17:08:57 +0000203 <version>${project.version}</version>
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000204 </dependency>
205
206 <dependency>
207 <groupId>org.apache.felix</groupId>
Clement Escoffiere6986562013-02-22 18:55:31 +0000208 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier6c1d7582013-06-21 14:24:32 +0000209 <!-- To update before the release -->
Clement Escoffier52ddb282013-10-08 12:54:51 +0000210 <!--<version>${project.version}</version>-->
Clement Escoffier94047982013-10-08 13:08:51 +0000211 <version>1.10.1</version>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000212 <exclusions>
213 <exclusion>
214 <groupId>org.osgi</groupId>
215 <artifactId>org.osgi.core</artifactId>
216 </exclusion>
217 <exclusion>
218 <groupId>org.osgi</groupId>
219 <artifactId>org.osgi.compendium</artifactId>
220 </exclusion>
221 </exclusions>
Clement Escoffiere6986562013-02-22 18:55:31 +0000222 </dependency>
223
Clement Escoffier4f2609b2013-03-20 07:35:37 +0000224 <dependency>
225 <groupId>org.apache.felix</groupId>
226 <artifactId>org.apache.felix.ipojo.manipulator.online</artifactId>
Guillaume Sauthierca551ba2013-06-03 17:08:57 +0000227 <version>${project.version}</version>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000228 <exclusions>
229 <exclusion>
230 <groupId>org.osgi</groupId>
231 <artifactId>org.osgi.core</artifactId>
232 </exclusion>
233 <exclusion>
234 <groupId>org.osgi</groupId>
235 <artifactId>org.osgi.compendium</artifactId>
236 </exclusion>
237 <exclusion>
238 <groupId>org.apache.felix</groupId>
239 <artifactId>org.apache.felix.ipojo</artifactId>
240 </exclusion>
241 </exclusions>
Clement Escoffier4f2609b2013-03-20 07:35:37 +0000242 </dependency>
243
Clement Escoffiere6986562013-02-22 18:55:31 +0000244 <!-- End of tested version -->
245
246 <dependency>
247 <groupId>org.apache.felix</groupId>
248 <artifactId>org.apache.felix.configadmin</artifactId>
249 <version>1.6.0</version>
250 <scope>test</scope>
251 </dependency>
252
253 <dependency>
254 <groupId>commons-io</groupId>
255 <artifactId>commons-io</artifactId>
256 <version>2.4</version>
257 </dependency>
258
259 <dependency>
260 <groupId>org.ow2.chameleon.testing</groupId>
261 <artifactId>osgi-helpers</artifactId>
Clement Escoffier52ddb282013-10-08 12:54:51 +0000262 <version>0.6.1</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000263 <scope>test</scope>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000264 <exclusions>
265 <exclusion>
266 <groupId>org.osgi</groupId>
267 <artifactId>org.osgi.core</artifactId>
268 </exclusion>
269 </exclusions>
Clement Escoffiere6986562013-02-22 18:55:31 +0000270 </dependency>
271
272 <dependency>
Clement Escoffiere6986562013-02-22 18:55:31 +0000273 <groupId>org.apache.felix</groupId>
274 <artifactId>org.apache.felix.log</artifactId>
275 <version>1.0.1</version>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000276 <exclusions>
277 <exclusion>
278 <groupId>org.osgi</groupId>
279 <artifactId>org.osgi.core</artifactId>
280 </exclusion>
281 </exclusions>
Clement Escoffiere6986562013-02-22 18:55:31 +0000282 </dependency>
283
284 <dependency>
285 <groupId>org.ops4j.pax.url</groupId>
286 <artifactId>pax-url-wrap</artifactId>
287 <version>1.5.2</version>
288 </dependency>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000289
290 <dependency>
291 <groupId>org.easytesting</groupId>
292 <artifactId>fest-assert</artifactId>
293 <version>1.4</version>
294 </dependency>
Clement Escoffiere6986562013-02-22 18:55:31 +0000295 </dependencies>
296
297 <profiles>
298 <profile>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000299 <id>default</id>
300 <activation>
301 <activeByDefault>true</activeByDefault>
302 </activation>
Clement Escoffier7e951462013-10-04 13:11:51 +0000303 <properties>
304 <pax.exam.framework>none</pax.exam.framework>
305 </properties>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000306 <dependencies>
307 <dependency>
308 <groupId>org.osgi</groupId>
309 <artifactId>org.osgi.compendium</artifactId>
310 <version>4.3.0</version>
311 </dependency>
312 <dependency>
313 <groupId>org.osgi</groupId>
314 <artifactId>org.osgi.core</artifactId>
315 <version>4.3.1</version>
316 </dependency>
317 </dependencies>
318 </profile>
319 <profile>
Clement Escoffiere6986562013-02-22 18:55:31 +0000320 <id>knopflerfish</id>
321 <activation>
322 <activeByDefault>false</activeByDefault>
323 <property>
324 <name>pax.exam.framework</name>
325 <value>knopflerfish</value>
326 </property>
327 </activation>
328 <properties>
329 <pax.exam.framework>knopflerfish</pax.exam.framework>
330 </properties>
331 <repositories>
332 <repository>
333 <id>knopflerfish-releases</id>
334 <url>http://www.knopflerfish.org/maven2</url>
335 </repository>
336 </repositories>
337 <dependencies>
338 <dependency>
339 <groupId>org.knopflerfish</groupId>
340 <artifactId>framework</artifactId>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000341 <version>${knoperflerfish.version}</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000342 <scope>test</scope>
343 </dependency>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000344 <dependency>
345 <!-- must be after KF -->
346 <groupId>org.osgi</groupId>
347 <artifactId>org.osgi.core</artifactId>
348 <version>4.3.1</version>
349 </dependency>
Clement Escoffiere6986562013-02-22 18:55:31 +0000350 </dependencies>
351 </profile>
352
353 <profile>
354 <id>equinox</id>
355 <activation>
356 <activeByDefault>false</activeByDefault>
357 <property>
358 <name>pax.exam.framework</name>
359 <value>equinox</value>
360 </property>
361 </activation>
362 <properties>
363 <pax.exam.framework>equinox</pax.exam.framework>
364 </properties>
365 <dependencies>
366 <dependency>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000367 <groupId>org.osgi</groupId>
368 <artifactId>org.osgi.compendium</artifactId>
369 <version>4.3.0</version>
370 </dependency>
371 <dependency>
Clement Escoffiere6986562013-02-22 18:55:31 +0000372 <groupId>org.eclipse.tycho</groupId>
373 <artifactId>org.eclipse.osgi</artifactId>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000374 <version>${equinox.version}</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000375 <scope>test</scope>
376 </dependency>
Clement Escoffier8903b0a2013-09-22 17:55:19 +0000377 <dependency>
378 <!-- must be after equinox -->
379 <groupId>org.osgi</groupId>
380 <artifactId>org.osgi.core</artifactId>
381 <version>4.3.1</version>
382 </dependency>
Clement Escoffiere6986562013-02-22 18:55:31 +0000383 </dependencies>
384 </profile>
385
386 <profile>
387 <id>felix</id>
388 <activation>
389 <activeByDefault>false</activeByDefault>
390 <property>
391 <name>pax.exam.framework</name>
392 <value>felix</value>
393 </property>
394 </activation>
395 <properties>
396 <pax.exam.framework>felix</pax.exam.framework>
397 </properties>
398 <dependencies>
399 <dependency>
400 <groupId>org.apache.felix</groupId>
401 <artifactId>org.apache.felix.framework</artifactId>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000402 <version>${felix.version}</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000403 </dependency>
404 </dependencies>
405 </profile>
406
407 <profile>
408 <id>test</id>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000409 <properties>
410 <skipTestExecution>false</skipTestExecution>
411 </properties>
Clement Escoffierfe1775d2013-05-13 12:54:07 +0000412 </profile>
Clement Escoffiere6986562013-02-22 18:55:31 +0000413 </profiles>
Clement Escoffier917a0c22013-10-08 13:11:02 +0000414
415 <scm>
416 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator.manipulator-it</connection>
417 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator.manipulator-it</developerConnection>
418 <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.manipulator-project-1.11.0/org.apache.felix.ipojo.manipulator.manipulator-it</url>
419 </scm>
Clement Escoffiere6986562013-02-22 18:55:31 +0000420</project>