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