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

History | View | Annotate | Download (2.79 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 45239 omartinez
        <version>2.0.290</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 44831 jjdelcerro
        <dependency>
46
            <groupId>commons-io</groupId>
47
            <artifactId>commons-io</artifactId>
48
            <scope>compile</scope>
49
        </dependency>
50 43521 jjdelcerro
    </dependencies>
51 44644 jjdelcerro
52
  <build>
53
    <plugins>
54
55
      <plugin>
56
        <groupId>org.apache.maven.plugins</groupId>
57
        <artifactId>maven-surefire-plugin</artifactId>
58
        <configuration>
59 44809 jjdelcerro
          <!-- Skip test execution ? -->
60 44644 jjdelcerro
          <skipTests>false</skipTests>
61 44809 jjdelcerro
          <!-- Ignore test execution failure ? -->
62 45073 omartinez
          <testFailureIgnore>false</testFailureIgnore>
63 44644 jjdelcerro
        </configuration>
64
      </plugin>
65
66
      <!-- Skip test compilation ? -->
67
      <plugin>
68
        <groupId>org.apache.maven.plugins</groupId>
69
        <artifactId>maven-compiler-plugin</artifactId>
70
        <executions>
71
          <execution>
72
            <id>default-testCompile</id>
73
            <phase>process-test-sources</phase>
74
            <goals>
75
              <goal>testCompile</goal>
76
            </goals>
77
            <configuration>
78
              <skip>false</skip>
79
            </configuration>
80
          </execution>
81
        </executions>
82
      </plugin>
83
84
    </plugins>
85
  </build>
86
87 43512 jjdelcerro
</project>