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

History | View | Annotate | Download (2.14 KB)

1
<?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
      <version>2.0.10-SNAPSHOT</version>
12
  </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
  </dependencies>
41

    
42

    
43
  <build>
44
    <plugins>
45
      <plugin>
46
        <groupId>org.apache.maven.plugins</groupId>
47
        <artifactId>maven-surefire-plugin</artifactId>
48
        <configuration>
49
          <skipTests>true</skipTests>
50
        </configuration>
51
      </plugin>
52

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

    
72
</project>