]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/pom.xml
Adapt web services to lazy loading
[gpl/argeo-slc.git] / org.argeo.slc.webapp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.argeo.slc</groupId>
8 <artifactId>argeo-slc</artifactId>
9 <version>0.9-SNAPSHOT</version>
10 <relativePath>../org.argeo.slc</relativePath>
11 </parent>
12 <artifactId>org.argeo.slc.webapp</artifactId>
13 <packaging>war</packaging>
14 <name>Argeo SLC Web Application</name>
15 <build>
16 <finalName>${artifactId}</finalName>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-surefire-plugin</artifactId>
25 <configuration>
26 <skip>true</skip>
27 </configuration>
28 <executions>
29 <execution>
30 <id>surefire-it</id>
31 <phase>integration-test</phase>
32 <goals>
33 <goal>test</goal>
34 </goals>
35 <configuration>
36 <skip>false</skip>
37 </configuration>
38 </execution>
39 </executions>
40 </plugin>
41 <plugin>
42 <groupId>org.mortbay.jetty</groupId>
43 <artifactId>maven-jetty-plugin</artifactId>
44 <executions>
45 <execution>
46 <id>start-jetty</id>
47 <phase>pre-integration-test</phase>
48 <goals>
49 <goal>run</goal>
50 </goals>
51 <configuration>
52 <scanIntervalSeconds>0</scanIntervalSeconds>
53 <daemon>true</daemon>
54 </configuration>
55 </execution>
56 <execution>
57 <id>stop-jetty</id>
58 <phase>post-integration-test</phase>
59 <goals>
60 <goal>stop</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
65 </plugins>
66 </build>
67 <dependencies>
68 <dependency>
69 <groupId>org.argeo.slc</groupId>
70 <artifactId>argeo-slc-server</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.slc</groupId>
75 <artifactId>argeo-slc-agent</artifactId>
76 <version>${project.version}</version>
77 <scope>test</scope>
78 </dependency>
79 </dependencies>
80 </project>