Statistics
| Revision:

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

History | View | Annotate | Download (4.24 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
            <scope>compile</scope>
51
        </dependency>
52
        <dependency>
53
            <groupId>org.gvsig</groupId>
54
            <artifactId>org.gvsig.h2spatial.h2gis132.provider</artifactId>
55
            <scope>compile</scope>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.gvsig</groupId>
59
            <artifactId>org.gvsig.tools.dynform.spi</artifactId>
60
            <scope>compile</scope>
61
        </dependency>
62
    </dependencies>
63
    <build>
64
        <plugins>
65

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