Statistics
| Revision:

gvsig-projects-pool / org.gvsig.online / trunk / org.gvsig.online / org.gvsig.online.lib / org.gvsig.online.lib.impl / pom.xml @ 9512

History | View | Annotate | Download (4.35 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.online.lib</artifactId>
6
        <version>1.0.1-SNAPSHOT</version>
7
    </parent>
8
    <artifactId>org.gvsig.online.lib.impl</artifactId>
9
    <name>${project.artifactId}</name>
10
    <dependencies>
11
        <dependency>
12
            <groupId>org.gvsig</groupId>
13
            <artifactId>org.gvsig.online.lib.api</artifactId>
14
            <scope>compile</scope>
15
        </dependency>
16
        <dependency>
17
            <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.tools.swing.api</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
        <dependency>
22
            <groupId>org.gvsig</groupId>
23
            <artifactId>org.gvsig.tools.swing.impl</artifactId>
24
            <scope>test</scope>
25
        </dependency>
26
        <dependency>
27
            <groupId>org.gvsig</groupId>
28
            <artifactId>org.gvsig.tools.lib</artifactId>
29
            <scope>test</scope>
30
            <type>test-jar</type>
31
        </dependency>
32
        <dependency>
33
            <groupId>org.gvsig</groupId>
34
            <artifactId>${org.gvsig.fmap.geometry.impl}</artifactId>
35
            <scope>runtime</scope>
36
        </dependency>
37
        <dependency>
38
            <groupId>org.gvsig</groupId>
39
            <artifactId>org.gvsig.fmap.dal.api</artifactId>
40
            <scope>compile</scope>
41
        </dependency>
42
        <dependency>
43
            <groupId>org.gvsig</groupId>
44
            <artifactId>org.gvsig.fmap.dal.swing.api</artifactId>
45
            <scope>compile</scope>
46
        </dependency>
47
        <dependency>
48
            <groupId>org.apache.httpcomponents</groupId>
49
            <artifactId>httpclient</artifactId>
50
            <version>4.5.8</version>
51
            <type>jar</type>
52
        </dependency>
53
        <dependency>
54
            <groupId>org.gvsig</groupId>
55
            <artifactId>org.gvsig.h2spatial.h2gis132.provider</artifactId>
56
            <version>2.0.441-SNAPSHOT</version>
57
            <type>jar</type>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.gvsig</groupId>
61
            <artifactId>org.gvsig.tools.dynform.spi</artifactId>
62
            <version>3.0.372-SNAPSHOT</version>
63
            <type>jar</type>
64
        </dependency>
65
    </dependencies>
66
    <build>
67
        <plugins>
68

    
69
            <plugin>
70
                <groupId>org.apache.maven.plugins</groupId>
71
                <artifactId>maven-surefire-plugin</artifactId>
72
                <configuration>
73
                    <!-- Skip test execution ? -->
74
                    <skipTests>false</skipTests>
75
                    <!-- Ignore test execution failure ? -->
76
                    <testFailureIgnore>true</testFailureIgnore>
77
                    <excludes>
78
                        <exclude>**/TestCheckoutAlternativo.java</exclude>
79
                    </excludes>                        
80
                </configuration>
81
            </plugin>
82
        
83
            <!-- Skip test compilation ? -->
84
            <plugin>
85
                <groupId>org.apache.maven.plugins</groupId>
86
                <artifactId>maven-compiler-plugin</artifactId>
87
                <executions>
88
                    <execution>
89
                        <id>default-testCompile</id>
90
                        <phase>process-test-sources</phase>
91
                        <goals>
92
                            <goal>testCompile</goal>
93
                        </goals>
94
                        <configuration>
95
                            <skip>false</skip>
96
                        </configuration>
97
                    </execution>
98
                </executions>
99
            </plugin>
100
            <plugin>
101
                <groupId>org.apache.maven.plugins</groupId>
102
                <artifactId>maven-jar-plugin</artifactId>
103
                <configuration>
104
                </configuration>
105
                <executions>
106
                    <!-- Generates a jar file only with the test classes -->
107
                    <execution>
108
                        <goals>
109
                            <goal>test-jar</goal>
110
                        </goals>
111
                    </execution>
112
                </executions>
113
            </plugin>
114
        </plugins>
115
    </build>
116
    
117
</project>