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