blob: 7cf9920ffd0c760d46a73e58119948493192ebbf [file] [log] [blame]
Clement Escoffier33c03832013-02-26 13:02:34 +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-->
19<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xmlns="http://maven.apache.org/POM/4.0.0"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000025 <version>2.1</version>
Clement Escoffier33c03832013-02-26 13:02:34 +000026 <relativePath>../../../pom/pom.xml</relativePath>
27 </parent>
28 <modelVersion>4.0.0</modelVersion>
29 <artifactId>org.apache.felix.ipojo.runtime.composite-it</artifactId>
30 <version>1.9.0-SNAPSHOT</version>
31 <name>Apache Felix iPOJO Runtime Project ~ Composite Integration Tests</name>
32 <packaging>pom</packaging>
33
34 <build>
Clement Escoffier33c03832013-02-26 13:02:34 +000035 <plugins>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-compiler-plugin</artifactId>
39 <version>2.5.1</version>
40 <configuration>
41 <source>1.6</source>
42 <target>1.6</target>
43 </configuration>
44 </plugin>
45
46 <plugin>
47 <groupId>org.apache.servicemix.tooling</groupId>
48 <artifactId>depends-maven-plugin</artifactId>
49 <version>1.2</version>
50 <executions>
51 <execution>
52 <id>generate-config</id>
53 <goals>
54 <goal>generate-depends-file</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
Clement Escoffiered4ca022013-03-13 15:27:20 +000059
60 <plugin>
61 <groupId>org.apache.rat</groupId>
62 <artifactId>apache-rat-plugin</artifactId>
63 <executions>
64 <execution>
65 <phase>verify</phase>
66 <goals>
67 <goal>check</goal>
68 </goals>
69 </execution>
70 </executions>
71 <configuration>
72 <!-- check src only (except remote resources additions) -->
73 <includes>
74 <include>src/**</include>
75 </includes>
76 <excludes>
77 <exclude>src/main/appended-resources/**</exclude>
78 <exclude>**/*.iml</exclude> <!-- Exclude iml files -->
Clement Escoffier9968ff72013-04-10 09:52:20 +000079 <!-- Exclude target folders that may have been created during
80 the integration-tests -->
81 <exclude>src/it/**/target/**/*</exclude>
Clement Escoffiered4ca022013-03-13 15:27:20 +000082 </excludes>
83 </configuration>
84 </plugin>
Clement Escoffier33c03832013-02-26 13:02:34 +000085 </plugins>
86
87 </build>
88
89 <properties>
Clement Escoffierd18900c2013-03-18 18:29:08 +000090 <!-- a new barrier check was pushed in the 3.0.1 -->
91 <exam.version>3.0.1</exam.version>
Clement Escoffier33c03832013-02-26 13:02:34 +000092 <url.version>1.5.1</url.version>
93 </properties>
94
95 <dependencies>
96
97 <dependency>
98 <groupId>org.ops4j.pax.exam</groupId>
99 <artifactId>pax-exam-container-native</artifactId>
100 <version>${exam.version}</version>
101 <scope>test</scope>
102 </dependency>
103
104 <dependency>
105 <groupId>org.ops4j.pax.exam</groupId>
106 <artifactId>pax-exam-junit4</artifactId>
107 <version>${exam.version}</version>
108 <scope>test</scope>
109 </dependency>
110
111 <dependency>
112 <groupId>org.ops4j.pax.exam</groupId>
113 <artifactId>pax-exam-link-mvn</artifactId>
114 <version>${exam.version}</version>
115 <scope>test</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>org.ops4j.pax.url</groupId>
120 <artifactId>pax-url-aether</artifactId>
121 <version>${url.version}</version>
122 <scope>test</scope>
123 </dependency>
124
125 <dependency>
126 <groupId>org.apache.felix</groupId>
127 <artifactId>org.apache.felix.framework</artifactId>
128 <version>4.2.0</version>
129 <scope>test</scope>
130 </dependency>
131
132 <dependency>
133 <groupId>ch.qos.logback</groupId>
134 <artifactId>logback-core</artifactId>
135 <version>0.9.6</version>
136 <scope>test</scope>
137 </dependency>
138
139 <dependency>
140 <groupId>ch.qos.logback</groupId>
141 <artifactId>logback-classic</artifactId>
142 <version>0.9.6</version>
143 <scope>test</scope>
144 </dependency>
145
146
147 <dependency>
148 <groupId>junit</groupId>
149 <artifactId>junit</artifactId>
150 <version>4.9</version>
151 <scope>test</scope>
152 </dependency>
153
154 <dependency>
155 <groupId>org.mockito</groupId>
156 <artifactId>mockito-all</artifactId>
157 <version>1.9.5</version>
158 </dependency>
159
160 <dependency>
161 <groupId>org.ops4j.pax.tinybundles</groupId>
162 <artifactId>tinybundles</artifactId>
163 <version>1.0.0</version>
164 </dependency>
165
166 <dependency>
167 <groupId>org.apache.felix</groupId>
168 <artifactId>org.apache.felix.ipojo</artifactId>
169 <version>1.9.0-SNAPSHOT</version>
170 </dependency>
171
172 <dependency>
173 <groupId>org.apache.felix</groupId>
174 <artifactId>org.apache.felix.ipojo.composite</artifactId>
175 <version>1.9.0-SNAPSHOT</version>
176 </dependency>
177
178 <dependency>
179 <groupId>org.apache.felix</groupId>
180 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
181 <version>1.9.0-SNAPSHOT</version>
182 </dependency>
183
184 <dependency>
185 <groupId>org.apache.felix</groupId>
186 <artifactId>org.apache.felix.configadmin</artifactId>
187 <version>1.6.0</version>
188 <scope>test</scope>
189 </dependency>
190
191 <dependency>
192 <groupId>commons-io</groupId>
193 <artifactId>commons-io</artifactId>
194 <version>2.4</version>
195 </dependency>
196
197 <dependency>
198 <groupId>org.ow2.chameleon.testing</groupId>
199 <artifactId>osgi-helpers</artifactId>
200 <version>0.6.0</version>
201 <scope>test</scope>
202 </dependency>
203
204 <dependency>
205 <groupId>org.ow2.chameleon.testing</groupId>
206 <artifactId>tinybundles-ipojo</artifactId>
207 <version>0.3.0</version>
208 </dependency>
209
210 <dependency>
211 <groupId>org.apache.felix</groupId>
212 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
213 <!--
214 We use the released version as we don't really have to do any behavioral test on the handler in the core
215 test.
216 -->
217 <version>1.8.0</version>
218 </dependency>
219
220 <dependency>
221 <groupId>org.apache.felix</groupId>
222 <artifactId>org.apache.felix.log</artifactId>
223 <version>1.0.1</version>
224 </dependency>
225
226 <dependency>
227 <groupId>org.ops4j.pax.url</groupId>
228 <artifactId>pax-url-wrap</artifactId>
229 <version>1.5.2</version>
230 </dependency>
231 </dependencies>
232
233 <profiles>
234 <profile>
Clement Escoffier33c03832013-02-26 13:02:34 +0000235 <id>knopflerfish</id>
236 <activation>
237 <activeByDefault>false</activeByDefault>
238 <property>
239 <name>pax.exam.framework</name>
240 <value>knopflerfish</value>
241 </property>
242 </activation>
243 <properties>
244 <pax.exam.framework>knopflerfish</pax.exam.framework>
245 </properties>
246 <repositories>
247 <repository>
248 <id>knopflerfish-releases</id>
249 <url>http://www.knopflerfish.org/maven2</url>
250 </repository>
251 </repositories>
252 <dependencies>
253 <dependency>
254 <groupId>org.knopflerfish</groupId>
255 <artifactId>framework</artifactId>
256 <version>5.2.0</version>
257 <scope>test</scope>
258 </dependency>
259 </dependencies>
260 </profile>
261
262 <profile>
263 <id>equinox</id>
264 <activation>
265 <activeByDefault>false</activeByDefault>
266 <property>
267 <name>pax.exam.framework</name>
268 <value>equinox</value>
269 </property>
270 </activation>
271 <properties>
272 <pax.exam.framework>equinox</pax.exam.framework>
273 </properties>
274 <dependencies>
275 <dependency>
276 <groupId>org.eclipse.tycho</groupId>
277 <artifactId>org.eclipse.osgi</artifactId>
278 <version>3.8.1.v20120830-144521</version>
279 <scope>test</scope>
280 </dependency>
281 </dependencies>
282 </profile>
283
284 <profile>
285 <id>felix</id>
286 <activation>
287 <activeByDefault>false</activeByDefault>
288 <property>
289 <name>pax.exam.framework</name>
290 <value>felix</value>
291 </property>
292 </activation>
293 <properties>
294 <pax.exam.framework>felix</pax.exam.framework>
295 </properties>
296 <dependencies>
297 <dependency>
298 <groupId>org.apache.felix</groupId>
299 <artifactId>org.apache.felix.framework</artifactId>
300 <version>4.2.0</version>
301 <scope>test</scope>
302 </dependency>
303 </dependencies>
304 </profile>
305
306 <profile>
307 <id>test</id>
308 <activation>
309 <activeByDefault>true</activeByDefault>
310 </activation>
311 <build>
312 <plugins>
313 <plugin>
314 <groupId>org.apache.maven.plugins</groupId>
315 <artifactId>maven-invoker-plugin</artifactId>
316 <version>1.8</version>
317 <configuration>
318 <streamLogs>true</streamLogs>
319 <goals>
320 <goal>clean</goal>
321 <goal>test</goal>
322 </goals>
323 <cloneClean>true</cloneClean>
324 </configuration>
325 <executions>
326 <execution>
327 <id>regular</id>
328 <goals>
329 <goal>run</goal>
330 </goals>
331 <configuration>
332 <profiles>
333 <profile>felix</profile>
334 </profiles>
335 <cloneProjectsTo>${project.build.directory}/regular</cloneProjectsTo>
336 </configuration>
337 </execution>
338 </executions>
339 </plugin>
340 </plugins>
341 </build>
342 </profile>
343
344 <profile>
345 <id>test-all</id>
346 <activation>
347 <activeByDefault>false</activeByDefault>
348 </activation>
349 <build>
350 <plugins>
351 <plugin>
352 <groupId>org.apache.maven.plugins</groupId>
353 <artifactId>maven-invoker-plugin</artifactId>
354 <version>1.8</version>
355 <configuration>
356 <streamLogs>true</streamLogs>
357 <goals>
358 <goal>clean</goal>
359 <goal>test</goal>
360 </goals>
361 <cloneClean>true</cloneClean>
362 </configuration>
363 <executions>
364 <execution>
365 <id>equinox-native</id>
366 <goals>
367 <goal>run</goal>
368 </goals>
369 <configuration>
370 <profiles>
371 <profile>equinox</profile>
372 </profiles>
373 <cloneProjectsTo>${project.build.directory}/equinox-native</cloneProjectsTo>
374
375 </configuration>
376 </execution>
377 <execution>
378 <id>felix-native</id>
379 <goals>
380 <goal>run</goal>
381 </goals>
382 <configuration>
383 <profiles>
384 <profile>felix</profile>
385 </profiles>
386 <cloneProjectsTo>${project.build.directory}/felix-native</cloneProjectsTo>
387 </configuration>
388 </execution>
389 <execution>
390 <id>knopflerfish-native</id>
391 <goals>
392 <goal>run</goal>
393 </goals>
394 <configuration>
395 <profiles>
396 <profile>knopflerfish</profile>
397 </profiles>
398 <cloneProjectsTo>${project.build.directory}/knopflerfish-native</cloneProjectsTo>
399 </configuration>
400 </execution>
401 </executions>
402 </plugin>
403 </plugins>
404 </build>
405 </profile>
406 </profiles>
407</project>