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