<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <packaging>war</packaging>
    <parent>
        <groupId>org.gvsig</groupId>
        <artifactId>org.gvsig.vcsgis.tomcat</artifactId>
        <version>1.0.140</version>
    </parent>
    <artifactId>org.gvsig.vcsgis.tomcat.webapp</artifactId>
    <name>${project.artifactId}</name>
    
    <dependencies>

        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.vcsgis.lib.api</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.vcsgis.lib.impl</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.fmap.dal.impl</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.fmap.dal.swing.api</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.fmap.dal.swing.impl</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>${org.gvsig.h2spatial.provider}</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.oracle.provider</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.postgresql.provider</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>${org.gvsig.fmap.geometry.impl}</artifactId>
            <scope>runtime</scope>
        </dependency>    
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.expressionevaluator.lib.impl</artifactId>
            <scope>runtime</scope>
        </dependency>    
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.expressionevaluator.geometry.lib.impl</artifactId>
            <scope>runtime</scope>
        </dependency>    
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>${org.gvsig.proj.lib.impl}</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.compat.se</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.metadata.lib.basic.impl</artifactId>
            <scope>runtime</scope>
        </dependency>      
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.timesupport.lib.impl</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.fmap.dal.file.csv</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.tools.util.impl</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.tools.swing.impl</artifactId>
            <scope>runtime</scope>
        </dependency>

        <dependency>
          <groupId>org.apache.tomcat</groupId>
          <artifactId>tomcat-servlet-api</artifactId>
        </dependency>
        
        <dependency>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-war-plugin</artifactId>
          <type>maven-plugin</type>
        </dependency>
    
    </dependencies>
    <build>
        <plugins>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <!-- Skip test execution ? -->
                    <skipTests>false</skipTests>
                    <!-- Ignore test execution failure ? -->
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>
            </plugin>
        
            <!-- Skip test compilation ? -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <executions>
                    <execution>
                        <id>default-testCompile</id>
                        <phase>process-test-sources</phase>
                        <goals>
                            <goal>testCompile</goal>
                        </goals>
                        <configuration>
                            <skip>false</skip>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
<!--                
                <configuration>
                    <packagingExcludes>WEB-INF/lib/websocket-*.jar</packagingExcludes>
                </configuration>
               -->
            </plugin>
            
            
        </plugins>
    </build>
    
</project>
