]> git.argeo.org Git - gpl/argeo-slc.git/blob - integration-tests/org.argeo.slc.it.webapp/pom.xml
@update:79; Wait for one agent
[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 <!--
6 <groupId>org.argeo.slc.server</groupId>
7 <artifactId>deploy</artifactId> <version>0.11.4-SNAPSHOT</version>
8 <relativePath>../../server/org.argeo.slc.siteserver</relativePath>
9 -->
10 <groupId>org.argeo.slc</groupId>
11 <artifactId>integration-tests</artifactId>
12 <version>0.11.4-SNAPSHOT</version>
13 </parent>
14 <groupId>org.argeo.slc.it</groupId>
15 <artifactId>org.argeo.slc.it.webapp</artifactId>
16 <packaging>jar</packaging>
17 <name>Argeo SLC Web Application Integration Tests</name>
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.argeo.slc.maven</groupId>
22 <artifactId>maven-argeo-osgi-plugin</artifactId>
23 <version>${version.maven-argeo-osgi}</version>
24 <configuration>
25 <argsToAppend>
26 <arg>-clean</arg>
27 </argsToAppend>
28 <systemProperties>
29 <slc.osgi.bundles>
30 ${basedir}/../../demo/site;in=*;ex=target,
31 ${basedir}/../../server/org.argeo.slc.siteserver/bundles;in=*
32 </slc.osgi.bundles>
33 <slc.osgi.start>
34 org.argeo.dep.osgi.catalina.start,
35 org.springframework.osgi.extender,
36 org.springframework.osgi.web.extender,
37 org.springframework.osgi.samples.simplewebapp,
38 org.argeo.slc.server.activemq,
39 org.argeo.slc.server.hsqldb,
40 org.argeo.slc.server.hibernate,
41 org.argeo.slc.server.services,
42 org.argeo.slc.server.jms,
43 org.argeo.slc.webapp,
44 org.argeo.slc.ria,
45 org.argeo.slc.agent
46 </slc.osgi.start>
47 </systemProperties>
48 </configuration>
49 <executions>
50 <execution>
51 <id>equinox-start</id>
52 <phase>pre-integration-test</phase>
53 <goals>
54 <goal>equinox</goal>
55 </goals>
56 <configuration>
57 <wait>false</wait>
58 </configuration>
59 </execution>
60 <execution>
61 <id>equinox-shutdown</id>
62 <phase>post-integration-test</phase>
63 <goals>
64 <goal>equinox-shutdown</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-surefire-plugin</artifactId>
72 <configuration>
73 <skipTests>true</skipTests>
74 </configuration>
75 <executions>
76 <execution>
77 <id>surefire-it</id>
78 <phase>integration-test</phase>
79 <goals>
80 <goal>test</goal>
81 </goals>
82 <configuration>
83 <skipTests>false</skipTests>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
90 <dependencies>
91 <!-- Server -->
92 <dependency>
93 <groupId>org.argeo.slc.runtime</groupId>
94 <artifactId>org.argeo.slc.support.equinox</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.argeo.slc.dep</groupId>
98 <artifactId>org.argeo.slc.dep.server</artifactId>
99 <version>${project.version}</version>
100 </dependency>
101 <!-- TEST -->
102 <dependency>
103 <groupId>org.argeo.slc.runtime</groupId>
104 <artifactId>org.argeo.slc.server</artifactId>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.argeo.slc.runtime</groupId>
109 <artifactId>org.argeo.slc.osgiboot</artifactId>
110 <scope>test</scope>
111 </dependency>
112 </dependencies>
113 </project>