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