]> git.argeo.org Git - gpl/argeo-slc.git/blob - integration-tests/org.argeo.slc.it.webapp/pom.xml
Create trash for old deprecated projects
[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.slc.maven</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,
26 ${basedir}/../../server/org.argeo.slc.siteserver/bundles;in=*
27 </slc.osgi.bundles>
28 <slc.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 </slc.osgi.start>
35 </systemProperties>
36 </configuration>
37 <executions>
38 <execution>
39 <id>equinox-start</id>
40 <phase>pre-integration-test</phase>
41 <goals>
42 <goal>equinox</goal>
43 </goals>
44 <configuration>
45 <wait>false</wait>
46 </configuration>
47 </execution>
48 <execution>
49 <id>equinox-shutdown</id>
50 <phase>post-integration-test</phase>
51 <goals>
52 <goal>equinox-shutdown</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-surefire-plugin</artifactId>
60 <configuration>
61 <skipTests>true</skipTests>
62 </configuration>
63 <executions>
64 <execution>
65 <id>surefire-it</id>
66 <phase>integration-test</phase>
67 <goals>
68 <goal>test</goal>
69 </goals>
70 <configuration>
71 <skipTests>false</skipTests>
72 </configuration>
73 </execution>
74 </executions>
75 </plugin>
76 </plugins>
77 </build>
78 <dependencies>
79 <dependency>
80 <groupId>org.argeo.slc.dep</groupId>
81 <artifactId>org.argeo.slc.dep.server</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.argeo.slc.dep</groupId>
86 <artifactId>org.argeo.slc.dep.agent</artifactId>
87 <version>${project.version}</version>
88 </dependency>
89 <!-- RIA -->
90 <dependency>
91 <groupId>org.argeo.slc.server</groupId>
92 <artifactId>org.argeo.slc.ria</artifactId>
93 </dependency>
94 </dependencies>
95 </project>