Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2031 / libraries / libRemoteServices / pom.xml @ 43228

History | View | Annotate | Download (2.97 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"
4
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
                      
7
        <modelVersion>4.0.0</modelVersion>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.remoteclient</artifactId>
10
        <packaging>jar</packaging>
11
        <version>2.0-SNAPSHOT</version>
12
        <name>libRemoteServices</name>
13
        <url>http://maven.apache.org</url>
14
        <parent>
15
                <groupId>org.gvsig</groupId>
16
                <artifactId>gvsig-base-library-pom</artifactId>
17
                <version>2.0-SNAPSHOT</version>
18
        </parent>        
19
        <distributionManagement>
20
                <site>
21
                        <id>gvsig-repository</id>
22
                        <url>${site-repository}/</url>
23
                </site>
24
        </distributionManagement>
25

    
26
        <dependencies>
27
                <dependency>
28
                        <groupId>org.gvsig</groupId>
29
                <artifactId>org.gvsig.tools.lib</artifactId>
30
            <scope>compile</scope>
31
              </dependency>
32
              <dependency>
33
                        <groupId>org.gvsig</groupId>
34
                        <artifactId>org.gvsig.compat</artifactId>
35
            <scope>compile</scope>
36
                </dependency>
37
              <dependency>
38
                        <groupId>org.gvsig</groupId>
39
                <artifactId>org.gvsig.fmap.geometry</artifactId>
40
            <scope>compile</scope>
41
              </dependency>
42
        <dependency>
43
            <groupId>net.sf.kxml</groupId>
44
            <artifactId>kxml2</artifactId>
45
            <scope>compile</scope>
46
        </dependency>
47
        <dependency>
48
            <groupId>xmlpull</groupId>
49
            <artifactId>xmlpull</artifactId>
50
            <scope>compile</scope>
51
        </dependency>
52
        </dependencies>
53
        <properties>
54
                <build-dir>${basedir}/../build</build-dir>
55
        <eclipse.project.name>libRemoteServices</eclipse.project.name>
56
        </properties>
57
        <profiles>
58
                <profile>
59
                        <id>se</id>
60
                        <dependencies>
61
                                <dependency>
62
                                        <groupId>org.gvsig</groupId>
63
                                        <artifactId>org.gvsig.compat</artifactId>
64
                                        <classifier>se</classifier>
65
                    <scope>test</scope>
66
                                </dependency>
67
                        </dependencies>
68
                </profile>
69
                <profile>
70
                        <id>cdc</id>
71
                        <dependencies>
72
                                <dependency>
73
                                        <groupId>org.gvsig.mobile</groupId>
74
                                        <artifactId>org.gvsig.mobile.compat</artifactId>
75
                                        <version>2.0-SNAPSHOT</version>
76
                    <scope>test</scope>
77
                                </dependency>
78
                        </dependencies>
79
                        <build>
80
                                <plugins>
81
                                        <plugin>
82
                                                <groupId>org.apache.maven.plugins</groupId>
83
                                                <artifactId>maven-compiler-plugin</artifactId>
84
                                                <configuration>
85
                                                        <source>1.4</source>
86
                                                        <target>1.4</target>
87
                                                </configuration>
88
                                        </plugin>
89
                                </plugins>
90
                        </build>
91
                </profile>
92
        </profiles>
93
        <build>
94
                <sourceDirectory>src</sourceDirectory>
95
                <testSourceDirectory>test</testSourceDirectory>
96
                
97
                <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
98
                <plugins>
99
                        <plugin>
100
                                <groupId>org.apache.maven.plugins</groupId>
101
                                <artifactId>maven-surefire-plugin</artifactId>
102
                                <configuration>
103
                                        <skipTests>true</skipTests>
104
                                </configuration>
105
                        </plugin>
106
                </plugins>
107
        </build>
108
</project>