Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libRemoteServices / pom.xml @ 38530

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