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