blob: 24d2a20e25913fa4ea27c71d6e32b3b6ffc2c45a [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 Escoffier609bf5f2013-06-21 07:30:11 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 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 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000024 <version>2.1</version>
Clement Escoffiere6986562013-02-22 18:55:31 +000025 <relativePath>../../../pom/pom.xml</relativePath>
26 </parent>
Clement Escoffier609bf5f2013-06-21 07:30:11 +000027
Clement Escoffiere6986562013-02-22 18:55:31 +000028 <modelVersion>4.0.0</modelVersion>
29 <artifactId>org.apache.felix.ipojo.manipulator.manipulator-it</artifactId>
Clement Escoffier6658d502013-06-16 06:27:29 +000030 <version>1.10.2-SNAPSHOT</version>
Clement Escoffiera00b6422013-02-26 18:35:04 +000031 <name>Apache Felix iPOJO Manipulator ~ Integration Tests</name>
Clement Escoffiere6986562013-02-22 18:55:31 +000032 <packaging>pom</packaging>
33
Clement Escoffier609bf5f2013-06-21 07:30:11 +000034 <properties>
35 <!-- Tests are enabled only when the 'test' profile is activated -->
36 <skipTestExecution>true</skipTestExecution>
37
38 <exam.version>3.0.0</exam.version>
39 <url.version>1.5.1</url.version>
40
41 <felix.version>4.2.0</felix.version>
42 <equinox.version>3.8.1.v20120830-144521</equinox.version>
43 <knoperflerfish.version>5.3.3</knoperflerfish.version>
44 </properties>
45
46 <modules>
47 <module>ipojo-manipulator-manipulation-test</module>
48 <module>ipojo-manipulator-creation-test</module>
49 <module>ipojo-manipulator-manipulation-metadata-test</module>
50 <module>online-manipulator-it</module>
51 </modules>
52
Clement Escoffiere6986562013-02-22 18:55:31 +000053 <build>
Clement Escoffiere6986562013-02-22 18:55:31 +000054 <plugins>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-compiler-plugin</artifactId>
58 <version>2.5.1</version>
59 <configuration>
60 <source>1.6</source>
61 <target>1.6</target>
62 </configuration>
63 </plugin>
64
65 <plugin>
66 <groupId>org.apache.servicemix.tooling</groupId>
67 <artifactId>depends-maven-plugin</artifactId>
68 <version>1.2</version>
69 <executions>
70 <execution>
71 <id>generate-config</id>
72 <goals>
73 <goal>generate-depends-file</goal>
74 </goals>
75 </execution>
76 </executions>
77 </plugin>
Clement Escoffiered4ca022013-03-13 15:27:20 +000078
79 <plugin>
80 <groupId>org.apache.rat</groupId>
81 <artifactId>apache-rat-plugin</artifactId>
82 <executions>
83 <execution>
84 <phase>verify</phase>
85 <goals>
86 <goal>check</goal>
87 </goals>
88 </execution>
89 </executions>
90 <configuration>
91 <!-- check src only (except remote resources additions) -->
92 <includes>
93 <include>src/**</include>
94 </includes>
95 <excludes>
96 <exclude>src/main/appended-resources/**</exclude>
97 <exclude>**/*.iml</exclude>
Clement Escoffier33660692013-04-12 05:48:29 +000098 <exclude>src/it/**/target/**</exclude>
Clement Escoffiered4ca022013-03-13 15:27:20 +000099 </excludes>
100 </configuration>
101 </plugin>
Clement Escoffier2c47f5f2013-06-04 19:46:29 +0000102
103 <plugin>
104 <artifactId>maven-deploy-plugin</artifactId>
105 <version>2.4</version>
106 <configuration>
107 <skip>true</skip>
108 </configuration>
109 </plugin>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000110
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-surefire-plugin</artifactId>
114 <version>2.15</version>
115 <configuration>
116 <skipTests>${skipTestExecution}</skipTests>
117 <systemPropertyVariables>
118 <!-- TIME_FACTOR can be set from the command line with -DTIME_FACTOR=9-->
119 <TIME_FACTOR>${TIME_FACTOR}</TIME_FACTOR>
120 </systemPropertyVariables>
121 </configuration>
122 </plugin>
Clement Escoffiere6986562013-02-22 18:55:31 +0000123 </plugins>
124
125 </build>
126
Clement Escoffiere6986562013-02-22 18:55:31 +0000127 <dependencies>
Clement Escoffiere6986562013-02-22 18:55:31 +0000128 <dependency>
129 <groupId>org.ops4j.pax.exam</groupId>
130 <artifactId>pax-exam-container-native</artifactId>
131 <version>${exam.version}</version>
132 <scope>test</scope>
133 </dependency>
134
135 <dependency>
136 <groupId>org.ops4j.pax.exam</groupId>
137 <artifactId>pax-exam-junit4</artifactId>
138 <version>${exam.version}</version>
139 <scope>test</scope>
140 </dependency>
141
142 <dependency>
143 <groupId>org.ops4j.pax.exam</groupId>
144 <artifactId>pax-exam-link-mvn</artifactId>
145 <version>${exam.version}</version>
146 <scope>test</scope>
147 </dependency>
148
149 <dependency>
150 <groupId>org.ops4j.pax.url</groupId>
151 <artifactId>pax-url-aether</artifactId>
152 <version>${url.version}</version>
153 <scope>test</scope>
154 </dependency>
155
156 <dependency>
157 <groupId>org.apache.felix</groupId>
158 <artifactId>org.apache.felix.framework</artifactId>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000159 <version>${felix.version}</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000160 <scope>test</scope>
161 </dependency>
162
163 <dependency>
164 <groupId>ch.qos.logback</groupId>
165 <artifactId>logback-core</artifactId>
166 <version>0.9.6</version>
167 <scope>test</scope>
168 </dependency>
169
170 <dependency>
171 <groupId>ch.qos.logback</groupId>
172 <artifactId>logback-classic</artifactId>
173 <version>0.9.6</version>
174 <scope>test</scope>
175 </dependency>
176
177
178 <dependency>
179 <groupId>junit</groupId>
180 <artifactId>junit</artifactId>
181 <version>4.9</version>
182 <scope>test</scope>
183 </dependency>
184
185 <dependency>
186 <groupId>org.mockito</groupId>
187 <artifactId>mockito-all</artifactId>
188 <version>1.9.5</version>
189 </dependency>
190
191 <dependency>
192 <groupId>org.ops4j.pax.tinybundles</groupId>
193 <artifactId>tinybundles</artifactId>
194 <version>1.0.0</version>
195 </dependency>
196
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000197 <!-- The tiny bundle extension must be before the manipulator version
198 to use the right version of the manipulator -->
199 <dependency>
200 <groupId>org.ow2.chameleon.testing</groupId>
201 <artifactId>tinybundles-ipojo</artifactId>
202 <version>0.3.0</version>
Clement Escoffierfe1775d2013-05-13 12:54:07 +0000203 <scope>test</scope>
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000204 </dependency>
205
Clement Escoffiere6986562013-02-22 18:55:31 +0000206 <!-- Define the tested version -->
207 <dependency>
208 <groupId>org.apache.felix</groupId>
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000209 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Guillaume Sauthierca551ba2013-06-03 17:08:57 +0000210 <version>${project.version}</version>
Clement Escoffier8c127ac2013-03-09 09:06:29 +0000211 </dependency>
212
213 <dependency>
214 <groupId>org.apache.felix</groupId>
Clement Escoffiere6986562013-02-22 18:55:31 +0000215 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierd569e5d2013-06-16 06:26:48 +0000216 <version>1.10.0</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000217 </dependency>
218
Clement Escoffier4f2609b2013-03-20 07:35:37 +0000219 <dependency>
220 <groupId>org.apache.felix</groupId>
221 <artifactId>org.apache.felix.ipojo.manipulator.online</artifactId>
Guillaume Sauthierca551ba2013-06-03 17:08:57 +0000222 <version>${project.version}</version>
Clement Escoffier4f2609b2013-03-20 07:35:37 +0000223 </dependency>
224
Clement Escoffiere6986562013-02-22 18:55:31 +0000225 <!-- End of tested version -->
226
227 <dependency>
228 <groupId>org.apache.felix</groupId>
229 <artifactId>org.apache.felix.configadmin</artifactId>
230 <version>1.6.0</version>
231 <scope>test</scope>
232 </dependency>
233
234 <dependency>
235 <groupId>commons-io</groupId>
236 <artifactId>commons-io</artifactId>
237 <version>2.4</version>
238 </dependency>
239
240 <dependency>
241 <groupId>org.ow2.chameleon.testing</groupId>
242 <artifactId>osgi-helpers</artifactId>
Clement Escoffier90ccbb32013-06-21 13:43:42 +0000243 <version>0.6.2-SNAPSHOT</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000244 <scope>test</scope>
245 </dependency>
246
247 <dependency>
Clement Escoffiere6986562013-02-22 18:55:31 +0000248 <groupId>org.apache.felix</groupId>
249 <artifactId>org.apache.felix.log</artifactId>
250 <version>1.0.1</version>
251 </dependency>
252
253 <dependency>
254 <groupId>org.ops4j.pax.url</groupId>
255 <artifactId>pax-url-wrap</artifactId>
256 <version>1.5.2</version>
257 </dependency>
258 </dependencies>
259
260 <profiles>
261 <profile>
Clement Escoffiere6986562013-02-22 18:55:31 +0000262 <id>knopflerfish</id>
263 <activation>
264 <activeByDefault>false</activeByDefault>
265 <property>
266 <name>pax.exam.framework</name>
267 <value>knopflerfish</value>
268 </property>
269 </activation>
270 <properties>
271 <pax.exam.framework>knopflerfish</pax.exam.framework>
272 </properties>
273 <repositories>
274 <repository>
275 <id>knopflerfish-releases</id>
276 <url>http://www.knopflerfish.org/maven2</url>
277 </repository>
278 </repositories>
279 <dependencies>
280 <dependency>
281 <groupId>org.knopflerfish</groupId>
282 <artifactId>framework</artifactId>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000283 <version>${knoperflerfish.version}</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000284 <scope>test</scope>
285 </dependency>
286 </dependencies>
287 </profile>
288
289 <profile>
290 <id>equinox</id>
291 <activation>
292 <activeByDefault>false</activeByDefault>
293 <property>
294 <name>pax.exam.framework</name>
295 <value>equinox</value>
296 </property>
297 </activation>
298 <properties>
299 <pax.exam.framework>equinox</pax.exam.framework>
300 </properties>
301 <dependencies>
302 <dependency>
303 <groupId>org.eclipse.tycho</groupId>
304 <artifactId>org.eclipse.osgi</artifactId>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000305 <version>${equinox.version}</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000306 <scope>test</scope>
307 </dependency>
308 </dependencies>
309 </profile>
310
311 <profile>
312 <id>felix</id>
313 <activation>
314 <activeByDefault>false</activeByDefault>
315 <property>
316 <name>pax.exam.framework</name>
317 <value>felix</value>
318 </property>
319 </activation>
320 <properties>
321 <pax.exam.framework>felix</pax.exam.framework>
322 </properties>
323 <dependencies>
324 <dependency>
325 <groupId>org.apache.felix</groupId>
326 <artifactId>org.apache.felix.framework</artifactId>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000327 <version>${felix.version}</version>
Clement Escoffiere6986562013-02-22 18:55:31 +0000328 <scope>test</scope>
329 </dependency>
330 </dependencies>
331 </profile>
332
333 <profile>
334 <id>test</id>
Clement Escoffier609bf5f2013-06-21 07:30:11 +0000335 <properties>
336 <skipTestExecution>false</skipTestExecution>
337 </properties>
Clement Escoffierfe1775d2013-05-13 12:54:07 +0000338 </profile>
Clement Escoffiere6986562013-02-22 18:55:31 +0000339 </profiles>
Clement Escoffiere6986562013-02-22 18:55:31 +0000340</project>