Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.lib / org.gvsig.expressionevaluator.lib.impl / pom.xml @ 44644

History | View | Annotate | Download (2.81 KB)

1
<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/xsd/maven-4.0.0.xsd">
2
    <modelVersion>4.0.0</modelVersion>
3
    <artifactId>org.gvsig.expressionevaluator.lib.impl</artifactId>
4
    <name>org.gvsig.expressionevaluator.lib.impl</name>
5
    <parent>
6
        <groupId>org.gvsig</groupId>
7
        <artifactId>org.gvsig.expressionevaluator.lib</artifactId>
8
        <version>2.0.261-SNAPSHOT</version>
9
    </parent>
10
    <groupId>org.gvsig</groupId>
11
    <dependencies>
12
        <dependency>
13
            <groupId>org.gvsig</groupId>
14
            <artifactId>org.gvsig.expressionevaluator.lib.api</artifactId>
15
            <scope>compile</scope>
16
        </dependency>
17
                
18
        <dependency>
19
            <groupId>org.json</groupId>
20
            <artifactId>json</artifactId>
21
            <scope>compile</scope>
22
        </dependency>
23
        <dependency>
24
            <groupId>commons-codec</groupId>
25
            <artifactId>commons-codec</artifactId>
26
            <scope>compile</scope>
27
        </dependency>
28
        <dependency>
29
            <groupId>org.apache.commons</groupId>
30
            <artifactId>commons-text</artifactId>
31
            <scope>compile</scope>
32
        </dependency>
33
<!--
34
        <dependency>
35
            <groupId>org.gvsig</groupId>
36
            <artifactId>org.gvsig.timesupport.lib.api</artifactId>
37
            <scope>compile</scope>
38
        </dependency>
39
        -->
40
        <dependency>
41
            <groupId>org.gvsig</groupId>
42
            <artifactId>org.gvsig.tools.swing.api</artifactId>
43
            <scope>compile</scope>
44
        </dependency>
45
    </dependencies>
46

    
47
  <build>
48
    <plugins>
49

    
50
      <!-- Skip test execution ? -->
51
      <plugin>
52
        <groupId>org.apache.maven.plugins</groupId>
53
        <artifactId>maven-surefire-plugin</artifactId>
54
        <configuration>
55
          <skipTests>false</skipTests>
56
        </configuration>
57
      </plugin>
58
        
59
      <!-- Skip test compilation ? -->
60
      <plugin>
61
        <groupId>org.apache.maven.plugins</groupId>
62
        <artifactId>maven-compiler-plugin</artifactId>
63
        <executions>
64
          <execution>
65
            <id>default-testCompile</id>
66
            <phase>process-test-sources</phase>
67
            <goals>
68
              <goal>testCompile</goal>
69
            </goals>
70
            <configuration>
71
              <skip>false</skip>
72
            </configuration>
73
          </execution>
74
        </executions>
75
      </plugin>
76

    
77
      <!-- Ignore test execution failure ? -->
78
      <plugin>
79
        <groupId>org.apache.maven.plugins</groupId>
80
        <artifactId>maven-surefire-plugin</artifactId>
81
        <configuration>
82
          <testFailureIgnore>false</testFailureIgnore>
83
        </configuration>
84
      </plugin>
85

    
86
    </plugins>
87
  </build>
88

    
89
</project>