Statistics
| Revision:

root / org.gvsig.projection.jcrs / trunk / org.gvsig.projection.jcrs / org.gvsig.projection.jcrs.lib / pom.xml @ 889

History | View | Annotate | Download (3.25 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/maven-v4_0_0.xsd">
4
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.projection.jcrs.lib</artifactId>
6
    <packaging>jar</packaging>
7

    
8
    <parent>
9
                <groupId>org.gvsig</groupId>
10
                <artifactId>org.gvsig.projection.jcrs</artifactId>
11
                <version>2.1.94</version>
12
        </parent>
13

    
14
    <dependencies>
15
        <dependency>
16
          <groupId>javax.units</groupId>
17
          <artifactId>jsr108</artifactId>
18
          <scope>compile</scope>
19
        </dependency>
20
        <dependency>
21
          <groupId>org.slf4j</groupId>
22
          <artifactId>slf4j-api</artifactId>
23
          <scope>compile</scope>
24
        </dependency>
25
        <dependency>
26
          <groupId>org.opengis</groupId>
27
          <artifactId>geoapi</artifactId>
28
          <scope>compile</scope>
29
        </dependency>
30
        <dependency>
31
          <groupId>hsqldb</groupId>
32
          <artifactId>hsqldb</artifactId>
33
          <scope>compile</scope>
34
        </dependency>
35
        <dependency>
36
          <groupId>org.geotools</groupId>
37
          <artifactId>gt2-main</artifactId>
38
          <scope>compile</scope>
39
        </dependency>
40
        <dependency>
41
            <groupId>commons-io</groupId>
42
            <artifactId>commons-io</artifactId>
43
            <scope>compile</scope>
44
        </dependency>
45

    
46

    
47
        <dependency>
48
          <groupId>org.gvsig</groupId>
49
          <artifactId>org.gvsig.proj.lib.api</artifactId>
50
          <scope>compile</scope>
51
        </dependency>
52
        <dependency>
53
          <groupId>org.gvsig</groupId>
54
          <artifactId>org.gvsig.tools.lib</artifactId>
55
          <scope>compile</scope>
56
        </dependency>
57
        <dependency>
58
          <groupId>org.gvsig</groupId>
59
          <artifactId>org.gvsig.projection.api</artifactId>
60
          <scope>compile</scope>
61
        </dependency>
62

    
63

    
64
        <dependency>
65
           <groupId>org.gdal</groupId>
66
           <artifactId>gdal</artifactId>
67
           <version>1.11.2</version>
68
        </dependency>
69

    
70
    </dependencies>
71

    
72
    <build>
73
      <plugins>
74
          <plugin>
75
            <!-- Skip compilation tests -->
76
            <groupId>org.apache.maven.plugins</groupId>
77
            <artifactId>maven-compiler-plugin</artifactId>
78
                  <configuration>
79
                      <source>1.5</source>
80
                      <target>1.5</target>
81
                      <encoding>ISO-8859-1</encoding>
82
                  </configuration>
83
                  <executions>
84
              <execution>
85
                <id>default-testCompile</id>
86
                <phase>process-test-sources</phase>
87
                <goals>
88
                  <goal>testCompile</goal>
89
                </goals>
90
                <configuration>
91
                  <skip>true</skip>
92
                </configuration>
93
              </execution>
94
            </executions>
95
          </plugin>
96

    
97
          <plugin>
98
            <!-- Skip test execution -->
99
            <groupId>org.apache.maven.plugins</groupId>
100
            <artifactId>maven-surefire-plugin</artifactId>
101
            <configuration>
102
              <skipTests>true</skipTests>
103
            </configuration>
104
          </plugin>
105

    
106
      </plugins>
107

    
108
    </build>
109

    
110
</project>