]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/pom.xml
Use SLC Detached (aka. SLC AutoUI) as a bundle.
[gpl/argeo-slc.git] / org.argeo.slc.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>argeo-slc</artifactId>
6 <version>0.11.1-SNAPSHOT</version>
7 <relativePath>../org.argeo.slc</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.webapp</artifactId>
10 <packaging>war</packaging>
11 <name>Argeo SLC Web Application</name>
12 <build>
13 <finalName>${artifactId}</finalName>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-surefire-plugin</artifactId>
22 <configuration>
23 <skip>true</skip>
24 </configuration>
25 <executions>
26 <execution>
27 <id>surefire-it</id>
28 <phase>integration-test</phase>
29 <goals>
30 <goal>test</goal>
31 </goals>
32 <configuration>
33 <skip>false</skip>
34 </configuration>
35 </execution>
36 </executions>
37 </plugin>
38 <plugin>
39 <groupId>org.mortbay.jetty</groupId>
40 <artifactId>maven-jetty-plugin</artifactId>
41 <executions>
42 <execution>
43 <id>start-jetty</id>
44 <phase>pre-integration-test</phase>
45 <goals>
46 <goal>run</goal>
47 </goals>
48 <configuration>
49 <scanIntervalSeconds>0</scanIntervalSeconds>
50 <daemon>true</daemon>
51 <jettyConfig>
52 src/main/config/jetty/jetty-test.xml
53 </jettyConfig>
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>