]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/pom.xml
Remove moved projects
[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 <scanIntervalSeconds>0</scanIntervalSeconds>
52 <daemon>true</daemon>
53 <jettyConfig>
54 src/main/config/jetty/jetty-test.xml
55 </jettyConfig>
56 </configuration>
57 </execution>
58 <execution>
59 <id>stop-jetty</id>
60 <phase>post-integration-test</phase>
61 <goals>
62 <goal>stop</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 </plugins>
68 </build>
69 <dependencies>
70 <dependency>
71 <groupId>org.argeo.slc.runtime</groupId>
72 <artifactId>org.argeo.slc.server</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.argeo.slc.runtime</groupId>
77 <artifactId>org.argeo.slc.launcher</artifactId>
78 <version>${project.version}</version>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.argeo.slc.runtime</groupId>
83 <artifactId>org.argeo.slc.support.ant</artifactId>
84 <version>${project.version}</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.argeo.slc.runtime</groupId>
89 <artifactId>org.argeo.slc.support.ws.client</artifactId>
90 <version>${project.version}</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>javax.activation</groupId>
95 <artifactId>com.springsource.javax.activation</artifactId>
96 <scope>test</scope>
97 </dependency>
98 </dependencies>
99 </project>