]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/pom.xml
Set CUSTOM_PERSPECTIVE in config.json / Fix jetty lock bug by using our own webdefaul...
[gpl/argeo-slc.git] / org.argeo.slc.webapp / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <version>0.11.2-SNAPSHOT</version>
9 <relativePath>../org.argeo.slc</relativePath>
10 </parent>
11 <artifactId>org.argeo.slc.webapp</artifactId>
12 <packaging>war</packaging>
13 <name>Argeo SLC Web Application</name>
14 <build>
15 <finalName>${artifactId}</finalName>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-surefire-plugin</artifactId>
24 <configuration>
25 <skip>true</skip>
26 </configuration>
27 <executions>
28 <execution>
29 <id>surefire-it</id>
30 <phase>integration-test</phase>
31 <goals>
32 <goal>test</goal>
33 </goals>
34 <configuration>
35 <skip>false</skip>
36 </configuration>
37 </execution>
38 </executions>
39 </plugin>
40 <plugin>
41 <groupId>org.mortbay.jetty</groupId>
42 <artifactId>maven-jetty-plugin</artifactId>
43 <executions>
44 <execution>
45 <id>start-jetty</id>
46 <phase>pre-integration-test</phase>
47 <goals>
48 <goal>run</goal>
49 </goals>
50 <configuration>
51 <webDefaultXml>src/main/config/jetty/webdefault.xml</webDefaultXml>
52 <scanIntervalSeconds>0</scanIntervalSeconds>
53 <daemon>true</daemon>
54 <jettyConfig>
55 src/main/config/jetty/jetty-test.xml
56 </jettyConfig>
57 </configuration>
58 </execution>
59 <execution>
60 <id>stop-jetty</id>
61 <phase>post-integration-test</phase>
62 <goals>
63 <goal>stop</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 </plugins>
69 </build>
70 <dependencies>
71 <dependency>
72 <groupId>org.argeo.slc.runtime</groupId>
73 <artifactId>org.argeo.slc.server</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.argeo.slc.runtime</groupId>
78 <artifactId>org.argeo.slc.launcher</artifactId>
79 <version>${project.version}</version>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.argeo.slc.runtime</groupId>
84 <artifactId>org.argeo.slc.support.ant</artifactId>
85 <version>${project.version}</version>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.argeo.slc.runtime</groupId>
90 <artifactId>org.argeo.slc.support.ws.client</artifactId>
91 <version>${project.version}</version>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>javax.activation</groupId>
96 <artifactId>com.springsource.javax.activation</artifactId>
97 <scope>test</scope>
98 </dependency>
99 </dependencies>
100 </project>