Statistics
| Revision:

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

History | View | Annotate | Download (3.13 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.16</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
    </dependencies>
64

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

    
101
    </build>
102
    
103
</project>