Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libRemoteServices / pom.xml @ 40335

History | View | Annotate | Download (3.61 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
        <version>2.0.1-SNAPSHOT</version>
9
        <name>libRemoteServices</name>
10
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop</url>
11
        <parent>
12
                <groupId>org.gvsig</groupId>
13
                <artifactId>gvsig-base-library-pom</artifactId>
14
                <version>2.0.2-SNAPSHOT</version>
15
        </parent>        
16
        <scm>
17
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libRemoteServices/</connection>
18
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libRemoteServices/</developerConnection>
19
        <url>https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libRemoteServices</url>
20
    </scm>
21
    
22
        <dependencies>
23
                <dependency>
24
                        <groupId>org.gvsig</groupId>
25
                <artifactId>org.gvsig.tools.lib</artifactId>
26
            <scope>compile</scope>
27
              </dependency>
28
              <dependency>
29
                        <groupId>org.gvsig</groupId>
30
                        <artifactId>org.gvsig.compat</artifactId>
31
            <scope>compile</scope>
32
                </dependency>
33
              <dependency>
34
                        <groupId>org.gvsig</groupId>
35
                <artifactId>org.gvsig.fmap.geometry</artifactId>
36
            <scope>compile</scope>
37
              </dependency>
38
        <dependency>
39
            <groupId>net.sf.kxml</groupId>
40
            <artifactId>kxml2</artifactId>
41
            <scope>compile</scope>
42
        </dependency>
43
        <dependency>
44
            <groupId>xmlpull</groupId>
45
            <artifactId>xmlpull</artifactId>
46
            <scope>compile</scope>
47
        </dependency>
48
        </dependencies>
49
        <properties>
50
                <build-dir>${basedir}/../build</build-dir>
51
        <eclipse.project.name>libRemoteServices</eclipse.project.name>
52
        </properties>
53
        <profiles>
54
                <profile>
55
                        <id>se</id>
56
                        <dependencies>
57
                                <dependency>
58
                                        <groupId>org.gvsig</groupId>
59
                                        <artifactId>org.gvsig.compat</artifactId>
60
                                        <classifier>se</classifier>
61
                    <scope>test</scope>
62
                                </dependency>
63
                        </dependencies>
64
                </profile>
65
                <profile>
66
                        <id>cdc</id>
67
                        <dependencies>
68
                                <dependency>
69
                                        <groupId>org.gvsig.mobile</groupId>
70
                                        <artifactId>org.gvsig.mobile.compat</artifactId>
71
                                        <version>2.0-SNAPSHOT</version>
72
                    <scope>test</scope>
73
                                </dependency>
74
                        </dependencies>
75
                        <build>
76
                                <plugins>
77
                                        <plugin>
78
                                                <groupId>org.apache.maven.plugins</groupId>
79
                                                <artifactId>maven-compiler-plugin</artifactId>
80
                                                <configuration>
81
                                                        <source>1.4</source>
82
                                                        <target>1.4</target>
83
                                                </configuration>
84
                                        </plugin>
85
                                </plugins>
86
                        </build>
87
                </profile>
88
        </profiles>
89
        <build>
90
                <sourceDirectory>src</sourceDirectory>
91
                <testSourceDirectory>test</testSourceDirectory>
92
                
93
                <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
94
                <plugins>
95
                        <plugin>
96
                                <groupId>org.apache.maven.plugins</groupId>
97
                                <artifactId>maven-surefire-plugin</artifactId>
98
                                <configuration>
99
                                        <skipTests>true</skipTests>
100
                                </configuration>
101
                        </plugin>
102
                    <plugin>
103
                      <artifactId>maven-release-plugin</artifactId>
104
                      <version>2.0</version>
105
                      <configuration>
106
                        <tagBase>https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/${artifactId}</tagBase>
107
                      </configuration>
108
                    </plugin>
109
                </plugins>
110
        </build>
111
</project>