Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.exportto / org.gvsig.exportto.lib / org.gvsig.exportto.lib.impl / pom.xml @ 41110

History | View | Annotate | Download (2.22 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
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.exportto.lib.impl</artifactId>
6
  <packaging>jar</packaging>
7
  <name>${project.artifactId}</name>
8
  <parent>
9
    <groupId>org.gvsig</groupId>
10
    <artifactId>org.gvsig.exportto.lib</artifactId>
11
    <version>2.0.25-SNAPSHOT</version>
12
  </parent>
13
  <dependencies>
14
    <dependency>
15
      <groupId>org.gvsig</groupId>
16
      <artifactId>org.gvsig.exportto.lib.api</artifactId>
17
    </dependency>
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.metadata.lib.basic.api</artifactId>
26
        <scope>compile</scope>
27
    </dependency>
28
    <dependency>
29
        <groupId>org.gvsig</groupId>
30
        <artifactId>org.gvsig.fmap.dal.api</artifactId>    
31
        <scope>compile</scope>        
32
    </dependency>
33
    <dependency>
34
        <groupId>org.gvsig</groupId>
35
        <artifactId>org.gvsig.projection.api</artifactId>
36
        <scope>compile</scope>
37
    </dependency>
38
  </dependencies>
39

    
40
  <build>
41
    <plugins>
42
        <plugin>
43
          <!-- Skip test execution -->
44
          <groupId>org.apache.maven.plugins</groupId>
45
          <artifactId>maven-surefire-plugin</artifactId>
46
          <configuration>
47
            <skipTests>true</skipTests>
48
          </configuration>
49
        </plugin>
50

    
51
        <plugin>
52
          <!-- Skip compilation tests -->
53
          <groupId>org.apache.maven.plugins</groupId>
54
          <artifactId>maven-compiler-plugin</artifactId>
55
          <executions>
56
            <execution>
57
              <id>default-testCompile</id>
58
              <phase>process-test-sources</phase>
59
              <goals>
60
                <goal>testCompile</goal>
61
              </goals>
62
              <configuration>
63
                <skip>true</skip>
64
              </configuration>
65
            </execution>
66
          </executions>
67
        </plugin>
68

    
69
    </plugins>
70
  </build>
71
</project>
72