Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.db / org.gvsig.fmap.dal.db.jdbc / pom.xml @ 44750

History | View | Annotate | Download (3.76 KB)

1 40510 jjdelcerro
<?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/xsd/maven-4.0.0.xsd">
4
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.fmap.dal.db.jdbc</artifactId>
7
  <name>${project.artifactId}</name>
8
  <parent>
9
      <groupId>org.gvsig</groupId>
10
      <artifactId>org.gvsig.fmap.dal.db</artifactId>
11 44736 jjdelcerro
      <version>2.0.267-SNAPSHOT</version>
12 40510 jjdelcerro
  </parent>
13
14
  <dependencies>
15
    <dependency>
16
      <groupId>org.gvsig</groupId>
17
      <artifactId>org.gvsig.tools.lib</artifactId>
18
      <scope>compile</scope>
19
    </dependency>
20
    <dependency>
21
        <groupId>org.gvsig</groupId>
22
        <artifactId>org.gvsig.fmap.dal.api</artifactId>
23
        <scope>compile</scope>
24
    </dependency>
25
    <dependency>
26
        <groupId>org.gvsig</groupId>
27
        <artifactId>org.gvsig.fmap.dal.spi</artifactId>
28
        <scope>compile</scope>
29
    </dependency>
30
    <dependency>
31
        <groupId>org.gvsig</groupId>
32
        <artifactId>org.gvsig.fmap.dal.db.lib</artifactId>
33
        <scope>compile</scope>
34
    </dependency>
35
    <dependency>
36
        <groupId>commons-dbcp</groupId>
37
        <artifactId>commons-dbcp</artifactId>
38
        <scope>compile</scope>
39
    </dependency>
40 43020 jjdelcerro
    <dependency>
41
        <groupId>commons-collections</groupId>
42
        <artifactId>commons-collections</artifactId>
43
        <scope>compile</scope>
44
    </dependency>
45 43377 jjdelcerro
    <dependency>
46
      <groupId>org.gvsig</groupId>
47
      <artifactId>org.gvsig.fmap.dal.file.lib</artifactId>
48
      <scope>compile</scope>
49
    </dependency>
50 44750 jjdelcerro
    <dependency>
51
      <groupId>commons-codec</groupId>
52
      <artifactId>commons-codec</artifactId>
53
      <scope>compile</scope>
54
    </dependency>
55 40510 jjdelcerro
    <!-- Tests -->
56
57
    <dependency>
58
        <groupId>org.gvsig</groupId>
59
        <artifactId>org.gvsig.fmap.dal.impl</artifactId>
60
        <scope>test</scope>
61
    </dependency>
62
    <dependency>
63 43114 jjdelcerro
        <groupId>org.gvsig</groupId>
64 44198 jjdelcerro
        <artifactId>${org.gvsig.fmap.geometry.impl}</artifactId>
65 40510 jjdelcerro
        <scope>test</scope>
66 44198 jjdelcerro
    </dependency>
67
    <dependency>
68
        <groupId>org.gvsig</groupId>
69
        <artifactId>org.gvsig.expressionevaluator.lib.impl</artifactId>
70
        <scope>test</scope>
71
    </dependency>
72
    <dependency>
73
        <groupId>org.gvsig</groupId>
74 44644 jjdelcerro
        <artifactId>org.gvsig.expressionevaluator.geometry.lib.impl</artifactId>
75
        <scope>test</scope>
76
    </dependency>
77
    <dependency>
78
        <groupId>org.gvsig</groupId>
79 44198 jjdelcerro
        <artifactId>${org.gvsig.proj.lib.impl}</artifactId>
80
        <scope>test</scope>
81 40510 jjdelcerro
    </dependency>
82
  </dependencies>
83
84
85
  <build>
86
    <plugins>
87 44644 jjdelcerro
88
      <!-- Skip test execution ? -->
89
      <plugin>
90 40510 jjdelcerro
        <groupId>org.apache.maven.plugins</groupId>
91
        <artifactId>maven-surefire-plugin</artifactId>
92
        <configuration>
93 44644 jjdelcerro
          <skipTests>false</skipTests>
94 40510 jjdelcerro
        </configuration>
95 44644 jjdelcerro
      </plugin>
96
97
      <!-- Skip test compilation ? -->
98 40510 jjdelcerro
      <plugin>
99
        <groupId>org.apache.maven.plugins</groupId>
100
        <artifactId>maven-compiler-plugin</artifactId>
101
        <executions>
102
          <execution>
103
            <id>default-testCompile</id>
104
            <phase>process-test-sources</phase>
105
            <goals>
106
              <goal>testCompile</goal>
107
            </goals>
108
            <configuration>
109 44644 jjdelcerro
              <skip>false</skip>
110 40510 jjdelcerro
            </configuration>
111
          </execution>
112
        </executions>
113
      </plugin>
114 44644 jjdelcerro
115
      <!-- Ignore test execution failure ? -->
116 44376 jjdelcerro
      <plugin>
117
        <groupId>org.apache.maven.plugins</groupId>
118
        <artifactId>maven-surefire-plugin</artifactId>
119 44644 jjdelcerro
        <configuration>
120
          <testFailureIgnore>false</testFailureIgnore>
121
        </configuration>
122 44376 jjdelcerro
      </plugin>
123 44644 jjdelcerro
124 40510 jjdelcerro
    </plugins>
125
  </build>
126
127
</project>