Statistics
| Revision:

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

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