Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libJCRS / pom.xml @ 34273

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/maven-v4_0_0.xsd">
6
        <modelVersion>4.0.0</modelVersion>
7
        <groupId>org.gvsig</groupId>
8
        <artifactId>org.gvsig.crs</artifactId>
9
        <packaging>jar</packaging>
10
        <version>2.0.1-SNAPSHOT</version>
11
        <name>libJCRS</name>
12
        <url>http://maven.apache.org</url>
13
        <parent>
14
                <groupId>org.gvsig</groupId>
15
                <artifactId>gvsig-base-library-pom</artifactId>
16
                <version>2.0-SNAPSHOT</version>
17
        </parent>        
18
        <distributionManagement>
19
                <site>
20
                        <id>gvsig-repository</id>
21
                        <url>${site-repository}/</url>
22
                </site>
23
        </distributionManagement>
24

    
25
        <dependencies>
26
                <dependency>
27
                        <groupId>org.gvsig</groupId>
28
                        <artifactId>org.gvsig.andami</artifactId>
29
                        <version>2.0-SNAPSHOT</version>
30
                </dependency>
31
                <dependency>
32
                        <groupId>org.gvsig</groupId>
33
                        <artifactId>org.gvsig.projection</artifactId>
34
                        <version>2.0-SNAPSHOT</version>
35
                </dependency>
36
                <dependency>
37
                        <groupId>org.opengis</groupId>
38
                    <artifactId>geoapi</artifactId>
39
                </dependency>
40
                <dependency>
41
                        <groupId>hsqldb</groupId>
42
                        <artifactId>hsqldb</artifactId>
43
                </dependency>
44
                <dependency>
45
                        <groupId>org.geotools</groupId>
46
                        <artifactId>gt2-epsg-hsql</artifactId>
47
                </dependency>
48
                <dependency>
49
                        <groupId>org.geotools</groupId>
50
                        <artifactId>gt2-epsg-iau2000</artifactId>
51
                </dependency>
52
                <dependency>
53
                        <groupId>org.geotools</groupId>
54
                        <artifactId>gt2-epsg-usr</artifactId>
55
                </dependency>
56
                <dependency>
57
                        <groupId>org.geotools</groupId>
58
                        <artifactId>gt2-epsg-esri</artifactId>
59
                </dependency>
60
                <dependency>
61
                        <groupId>org.geotools</groupId>
62
                        <artifactId>gt2-main</artifactId>
63
                </dependency>                
64
                <dependency>
65
                        <groupId>org.gvsig</groupId>
66
                        <artifactId>org.gvsig.jproj</artifactId>
67
                        <version>2.0.1-SNAPSHOT</version>
68
                        <classifier>${native-classifier}</classifier>
69
                        <type>tar.gz</type>
70
                </dependency>
71
        </dependencies>
72
        <properties>
73
                <build-dir>${basedir}/../build</build-dir>
74
        </properties>
75
        <build>
76
                <sourceDirectory>src</sourceDirectory>
77
                <testSourceDirectory>src-test</testSourceDirectory>
78
                <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->                                
79
                <resources>
80
                        <resource>
81
                                <directory>resources</directory>
82
                        </resource>
83
                </resources>
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
                        <plugin>
93
                                <groupId>org.apache.maven.plugins</groupId>
94
                                <artifactId>maven-compiler-plugin</artifactId>
95
                                <configuration>
96
                                        <testExcludes>
97
                                                <exclude>**</exclude>
98
                                        </testExcludes>
99
                                </configuration>
100
                        </plugin>
101
                </plugins>
102
        </build>
103
</project>