Statistics
| Revision:

gvsig-projects-pool / org.gvsig.republicadominicana.catastro / trunk / org.gvsig.republicadominicana.catastro / org.gvsig.republicadominicana.catastro.lib / org.gvsig.republicadominicana.catastro.lib.impl / pom.xml @ 9630

History | View | Annotate | Download (3.04 KB)

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/xsd/maven-4.0.0.xsd">
2
    <modelVersion>4.0.0</modelVersion>
3
    <parent>
4
        <groupId>org.gvsig</groupId>
5
        <artifactId>org.gvsig.republicadominicana.catastro.lib</artifactId>
6
        <version>1.0.1-SNAPSHOT</version>
7
    </parent>
8
    <artifactId>org.gvsig.republicadominicana.catastro.lib.impl</artifactId>
9
    <name>${project.artifactId}</name>
10
    <dependencies>
11
        <dependency>
12
            <groupId>org.gvsig</groupId>
13
            <artifactId>org.gvsig.republicadominicana.catastro.lib.api</artifactId>
14
            <scope>compile</scope>
15
        </dependency>
16
        <dependency>
17
            <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.online.lib.api</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
        <dependency>
22
            <groupId>org.gvsig</groupId>
23
            <artifactId>org.gvsig.tools.lib</artifactId>
24
            <scope>test</scope>
25
            <type>test-jar</type>
26
        </dependency>
27
    </dependencies>
28
    <build>
29
        <plugins>
30

    
31
            <plugin>
32
                <groupId>org.apache.maven.plugins</groupId>
33
                <artifactId>maven-surefire-plugin</artifactId>
34
                <configuration>
35
                    <!-- Skip test execution ? -->
36
                    <skipTests>false</skipTests>
37
                    <!-- Ignore test execution failure ? -->
38
                    <testFailureIgnore>true</testFailureIgnore>
39
                    <excludes>
40
                        <exclude>**/TestCheckoutAlternativo.java</exclude>
41
                    </excludes>                        
42
                </configuration>
43
            </plugin>
44
        
45
            <!-- Skip test compilation ? -->
46
            <plugin>
47
                <groupId>org.apache.maven.plugins</groupId>
48
                <artifactId>maven-compiler-plugin</artifactId>
49
                <executions>
50
                    <execution>
51
                        <id>default-testCompile</id>
52
                        <phase>process-test-sources</phase>
53
                        <goals>
54
                            <goal>testCompile</goal>
55
                        </goals>
56
                        <configuration>
57
                            <skip>false</skip>
58
                        </configuration>
59
                    </execution>
60
                </executions>
61
            </plugin>
62
            <plugin>
63
                <groupId>org.apache.maven.plugins</groupId>
64
                <artifactId>maven-jar-plugin</artifactId>
65
                <configuration>
66
                </configuration>
67
                <executions>
68
                    <!-- Generates a jar file only with the test classes -->
69
                    <execution>
70
                        <goals>
71
                            <goal>test-jar</goal>
72
                        </goals>
73
                    </execution>
74
                </executions>
75
            </plugin>
76
        </plugins>
77
    </build>
78
    
79
</project>