Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2023 / libraries / libRemoteServices / pom.xml @ 43637

History | View | Annotate | Download (2.48 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
              </dependency>
31
              <dependency>
32
                        <groupId>org.gvsig</groupId>
33
                        <artifactId>org.gvsig.compat</artifactId>
34
                        <version>2.0-SNAPSHOT</version>
35
                </dependency>
36
              <dependency>
37
                        <groupId>org.gvsig</groupId>
38
                <artifactId>org.gvsig.fmap.geometry</artifactId>
39
                <version>2.0-SNAPSHOT</version>
40
              </dependency>
41
        </dependencies>
42
        <properties>
43
                <build-dir>${basedir}/../build</build-dir>
44
        </properties>
45
        <profiles>
46
                <profile>
47
                        <id>se</id>
48
                        <dependencies>
49
                                <dependency>
50
                                        <groupId>org.gvsig</groupId>
51
                                        <artifactId>org.gvsig.compat</artifactId>
52
                                        <classifier>se</classifier>
53
                                </dependency>
54
                        </dependencies>
55
                </profile>
56
                <profile>
57
                        <id>cdc</id>
58
                        <dependencies>
59
                                <dependency>
60
                                        <groupId>org.gvsig.mobile</groupId>
61
                                        <artifactId>org.gvsig.mobile.compat</artifactId>
62
                                        <version>2.0-SNAPSHOT</version>
63
                                </dependency>
64
                        </dependencies>
65
                        <build>
66
                                <plugins>
67
                                        <plugin>
68
                                                <groupId>org.apache.maven.plugins</groupId>
69
                                                <artifactId>maven-compiler-plugin</artifactId>
70
                                                <configuration>
71
                                                        <source>1.4</source>
72
                                                        <target>1.4</target>
73
                                                </configuration>
74
                                        </plugin>
75
                                </plugins>
76
                        </build>
77
                </profile>
78
        </profiles>
79
        <build>
80
                <sourceDirectory>src</sourceDirectory>
81
                <testSourceDirectory>test</testSourceDirectory>
82
                
83
                <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
84
                <plugins>
85
                        <plugin>
86
                                <groupId>org.apache.maven.plugins</groupId>
87
                                <artifactId>maven-surefire-plugin</artifactId>
88
                                <configuration>
89
                                        <skipTests>true</skipTests>
90
                                </configuration>
91
                        </plugin>
92
                </plugins>
93
        </build>
94
</project>