]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.webapp/pom.xml
[maven-release-plugin] copy for tag argeo-slc-all-0.11.0
[gpl/argeo-slc.git] / org.argeo.slc.webapp / pom.xml
index 793de6e2e0ec83cac134501c0b19a2dc416994bf..cfb1b0a8aa02942551cee1bf98c7e921bb960b5c 100644 (file)
@@ -1,31 +1,80 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<project xmlns="http://maven.apache.org/POM/4.0.0"\r
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
-       <modelVersion>4.0.0</modelVersion>\r
-       <parent>\r
-               <groupId>org.argeo.slc</groupId>\r
-               <artifactId>argeo-slc</artifactId>\r
-               <version>0.9.2</version>\r
-               <relativePath>../org.argeo.slc</relativePath>\r
-       </parent>\r
-       <artifactId>org.argeo.slc.webapp</artifactId>\r
-       <packaging>war</packaging>\r
-       <name>Argeo SLC Web Application</name>\r
-       <build>\r
-               <finalName>${artifactId}</finalName>\r
-               <plugins>\r
-                       <plugin>\r
-                               <groupId>org.apache.maven.plugins</groupId>\r
-                               <artifactId>maven-compiler-plugin</artifactId>\r
-                       </plugin>\r
-               </plugins>\r
-       </build>\r
-       <dependencies>\r
-               <dependency>\r
-                       <groupId>org.argeo.slc</groupId>\r
-                       <artifactId>argeo-slc-server</artifactId>\r
-                       <version>${project.version}</version>\r
-               </dependency>\r
-       </dependencies>\r
+<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">
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+               <groupId>org.argeo.slc</groupId>
+               <artifactId>argeo-slc</artifactId>
+               <version>0.11.0</version>
+               <relativePath>../org.argeo.slc</relativePath>
+       </parent>
+       <artifactId>org.argeo.slc.webapp</artifactId>
+       <packaging>war</packaging>
+       <name>Argeo SLC Web Application</name>
+       <build>
+               <finalName>${artifactId}</finalName>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                               <configuration>
+                                       <skip>true</skip>
+                               </configuration>
+                               <executions>
+                                       <execution>
+                                               <id>surefire-it</id>
+                                               <phase>integration-test</phase>
+                                               <goals>
+                                                       <goal>test</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <skip>false</skip>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.mortbay.jetty</groupId>
+                               <artifactId>maven-jetty-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>start-jetty</id>
+                                               <phase>pre-integration-test</phase>
+                                               <goals>
+                                                       <goal>run</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <scanIntervalSeconds>0</scanIntervalSeconds>
+                                                       <daemon>true</daemon>
+                                                       <jettyConfig>
+                                                               src/main/config/jetty/jetty-test.xml
+                                                       </jettyConfig>
+                                               </configuration>
+                                       </execution>
+                                       <execution>
+                                               <id>stop-jetty</id>
+                                               <phase>post-integration-test</phase>
+                                               <goals>
+                                                       <goal>stop</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+       <dependencies>
+               <dependency>
+                       <groupId>org.argeo.slc</groupId>
+                       <artifactId>argeo-slc-server</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc</groupId>
+                       <artifactId>argeo-slc-agent</artifactId>
+                       <version>${project.version}</version>
+                       <scope>test</scope>
+               </dependency>
+       </dependencies>
 </project>
\ No newline at end of file