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 @ 44758

History | View | Annotate | Download (2.81 KB)

1 43512 jjdelcerro
<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 43521 jjdelcerro
    <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 44758 jjdelcerro
        <version>2.0.268-SNAPSHOT</version>
9 43521 jjdelcerro
    </parent>
10 43512 jjdelcerro
    <groupId>org.gvsig</groupId>
11 43521 jjdelcerro
    <dependencies>
12
        <dependency>
13
            <groupId>org.gvsig</groupId>
14
            <artifactId>org.gvsig.expressionevaluator.lib.api</artifactId>
15
            <scope>compile</scope>
16
        </dependency>
17 44644 jjdelcerro
18 43521 jjdelcerro
        <dependency>
19 43984 jjdelcerro
            <groupId>org.json</groupId>
20
            <artifactId>json</artifactId>
21 43521 jjdelcerro
            <scope>compile</scope>
22
        </dependency>
23 44006 jjdelcerro
        <dependency>
24
            <groupId>commons-codec</groupId>
25
            <artifactId>commons-codec</artifactId>
26
            <scope>compile</scope>
27
        </dependency>
28
        <dependency>
29 44198 jjdelcerro
            <groupId>org.apache.commons</groupId>
30
            <artifactId>commons-text</artifactId>
31
            <scope>compile</scope>
32
        </dependency>
33 44644 jjdelcerro
<!--
34 44198 jjdelcerro
        <dependency>
35 44006 jjdelcerro
            <groupId>org.gvsig</groupId>
36 44644 jjdelcerro
            <artifactId>org.gvsig.timesupport.lib.api</artifactId>
37
            <scope>compile</scope>
38 44006 jjdelcerro
        </dependency>
39 44644 jjdelcerro
        -->
40 44006 jjdelcerro
        <dependency>
41
            <groupId>org.gvsig</groupId>
42 44644 jjdelcerro
            <artifactId>org.gvsig.tools.swing.api</artifactId>
43 44080 jjdelcerro
            <scope>compile</scope>
44
        </dependency>
45 43521 jjdelcerro
    </dependencies>
46 44644 jjdelcerro
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 43512 jjdelcerro
</project>