]> git.argeo.org Git - gpl/argeo-slc.git/blob - integration-tests/org.argeo.slc.it.webapp/pom.xml
c1ba1a27a1edd4ec8260e46729ed81ef44a41fd0
[gpl/argeo-slc.git] / integration-tests / org.argeo.slc.it.webapp / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc.it</groupId>
6 <artifactId>argeo-slc-it</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.it.webapp</artifactId>
11 <packaging>jar</packaging>
12 <name>Argeo SLC Web Application Integration Tests</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-dependency-plugin</artifactId>
18 <executions>
19 <execution>
20 <id>copy-dependencies</id>
21 <phase>pre-integration-test</phase>
22 <goals>
23 <goal>copy-dependencies</goal>
24 </goals>
25 <configuration>
26 <overWriteReleases>true</overWriteReleases>
27 <overWriteSnapshots>true</overWriteSnapshots>
28 </configuration>
29 </execution>
30 </executions>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-surefire-plugin</artifactId>
35 <configuration>
36 <skipTests>true</skipTests>
37 </configuration>
38 <executions>
39 <execution>
40 <id>surefire-it</id>
41 <phase>integration-test</phase>
42 <goals>
43 <goal>test</goal>
44 </goals>
45 <configuration>
46 <skipTests>false</skipTests>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 </plugins>
52 </build>
53 <dependencies>
54 <!-- Server -->
55 <dependency>
56 <groupId>org.argeo.slc.server</groupId>
57 <artifactId>bundles</artifactId>
58 <version>${project.version}</version>
59 <type>pom</type>
60 </dependency>
61
62 <!-- TEST -->
63 <dependency>
64 <groupId>org.argeo.slc.runtime</groupId>
65 <artifactId>org.argeo.slc.support.equinox</artifactId>
66 <classifier>tests</classifier>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework.osgi</groupId>
71 <artifactId>org.springframework.osgi.test</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.slc.runtime</groupId>
76 <artifactId>org.argeo.slc.osgiboot</artifactId>
77 <scope>test</scope>
78 </dependency>
79
80 </dependencies>
81 </project>