]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.webapp/pom.xml
[maven-release-plugin] copy for tag 0.9.3
[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.9.3</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 </configuration>
52 </execution>
53 <execution>
54 <id>stop-jetty</id>
55 <phase>post-integration-test</phase>
56 <goals>
57 <goal>stop</goal>
58 </goals>
59 </execution>
60 </executions>
61 </plugin>
62 </plugins>
63 </build>
64 <dependencies>
65 <dependency>
66 <groupId>org.argeo.slc</groupId>
67 <artifactId>argeo-slc-server</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.argeo.slc</groupId>
72 <artifactId>argeo-slc-agent</artifactId>
73 <version>${project.version}</version>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77 </project>