]> git.argeo.org Git - gpl/argeo-slc.git/blob - integration-tests/org.argeo.slc.it.webapp/pom.xml
Almost complete implementation of the flow namespace
[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.12.1-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>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 <argeo.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 </argeo.osgi.bundles>
29 <argeo.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 </argeo.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.commons.osgi</groupId>
83 <artifactId>org.argeo.osgi.boot</artifactId>
84 <version>${version.argeo-commons}</version>
85 </dependency>
86
87 <dependency>
88 <groupId>org.argeo.slc.dep</groupId>
89 <artifactId>org.argeo.slc.dep.server</artifactId>
90 <version>${project.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>org.argeo.slc.dep</groupId>
94 <artifactId>org.argeo.slc.dep.agent</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97
98 <!-- Security -->
99 <dependency>
100 <groupId>org.argeo.commons.security</groupId>
101 <artifactId>org.argeo.security.dep.ads</artifactId>
102 <version>${version.argeo-commons}</version>
103 <type>pom</type>
104 </dependency>
105
106 <!-- RIA -->
107 <dependency>
108 <groupId>org.argeo.slc.server</groupId>
109 <artifactId>org.argeo.slc.ria</artifactId>
110 </dependency>
111
112 <!-- Unit Tests -->
113 <dependency>
114 <groupId>org.argeo.slc.runtime</groupId>
115 <artifactId>org.argeo.slc.unit</artifactId>
116 <scope>test</scope>
117 </dependency>
118 </dependencies>
119 </project>