Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.compat.cdc / org.gvsig.remoteclient / pom.xml @ 43830

History | View | Annotate | Download (2.17 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<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">
4
                      
5
    <modelVersion>4.0.0</modelVersion>
6
    <artifactId>org.gvsig.remoteclient</artifactId>
7
    <packaging>jar</packaging>
8
    <name>${project.artifactId}</name>
9
    <parent>
10
        <groupId>org.gvsig</groupId>
11
        <artifactId>org.gvsig.desktop.compat.cdc</artifactId>
12
        <version>3.0.0-SNAPSHOT</version>
13
    </parent>  
14
    
15
    <dependencies>
16
        <dependency>
17
            <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.tools.lib</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
        <dependency>
22
            <groupId>org.gvsig</groupId>
23
            <artifactId>org.gvsig.compat.api</artifactId>
24
            <scope>compile</scope>
25
        </dependency>
26
        <dependency>
27
            <groupId>org.gvsig</groupId>
28
            <artifactId>org.gvsig.fmap.geometry.api</artifactId>
29
            <scope>compile</scope>
30
        </dependency>
31
        <dependency>
32
            <groupId>net.sf.kxml</groupId>
33
            <artifactId>kxml2</artifactId>
34
            <scope>compile</scope>
35
        </dependency>
36
        <dependency>
37
            <groupId>xmlpull</groupId>
38
            <artifactId>xmlpull</artifactId>
39
            <scope>compile</scope>
40
        </dependency>
41
        <dependency>
42
            <groupId>org.apache.commons</groupId>
43
            <artifactId>commons-lang3</artifactId>
44
            <scope>compile</scope>
45
        </dependency>
46
    </dependencies>
47

    
48
    <build>
49
    
50
        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
51
        <plugins>
52
            <plugin>
53
                <groupId>org.apache.maven.plugins</groupId>
54
                <artifactId>maven-surefire-plugin</artifactId>
55
                <configuration>
56
                    <skipTests>true</skipTests>
57
                </configuration>
58
            </plugin>
59
        </plugins>
60
    </build>
61

    
62
    <description>Contains utility clases to manage the access to remote data sources how WMS, WCS or WFS.</description>
63
</project>