Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.xml2db / org.gvsig.xml2db.swing / org.gvsig.xml2db.swing.impl / pom.xml @ 47743

History | View | Annotate | Download (3.45 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
  <parent>
4
    <groupId>org.gvsig</groupId>
5
    <artifactId>org.gvsig.xml2db.swing</artifactId>
6
    <version>2.0.445</version>
7
  </parent>
8
  <artifactId>org.gvsig.xml2db.swing.impl</artifactId>
9
  <name>${project.artifactId}</name>
10
  <dependencies>
11
    <dependency>
12
      <groupId>org.gvsig</groupId>
13
      <artifactId>org.gvsig.xml2db.lib.api</artifactId>
14
      <scope>compile</scope>
15
    </dependency>
16
    <dependency>
17
      <groupId>org.gvsig</groupId>
18
      <artifactId>org.gvsig.xml2db.swing.api</artifactId>
19
      <scope>compile</scope>
20
    </dependency>
21
    <dependency>
22
      <groupId>org.gvsig</groupId>
23
      <artifactId>org.gvsig.tools.lib</artifactId>
24
      <scope>compile</scope>
25
    </dependency>
26
    <dependency>
27
      <groupId>com.jgoodies</groupId>
28
      <artifactId>jgoodies-forms</artifactId>
29
      <scope>compile</scope>
30
    </dependency>
31
    <dependency>
32
      <groupId>org.gvsig</groupId>
33
      <artifactId>org.gvsig.tools.swing.api</artifactId>
34
      <scope>compile</scope>
35
    </dependency>
36
    <dependency>
37
      <groupId>org.gvsig</groupId>
38
      <artifactId>org.gvsig.fmap.dal.swing.api</artifactId>
39
      <scope>compile</scope>
40
    </dependency>
41
    <dependency>
42
      <groupId>org.gvsig</groupId>
43
      <artifactId>org.gvsig.fmap.mapcontext.api</artifactId>
44
      <scope>compile</scope>
45
    </dependency>
46
    <dependency>
47
      <groupId>org.gvsig</groupId>
48
      <artifactId>${org.gvsig.h2spatial.provider}</artifactId>
49
      <scope>test</scope>
50
    </dependency>
51
  </dependencies>
52

    
53

    
54
    <build>
55
        <plugins>
56

    
57
            <plugin>
58
                <groupId>org.apache.maven.plugins</groupId>
59
                <artifactId>maven-surefire-plugin</artifactId>
60
                <configuration>
61
                    <!-- Skip test execution ? -->
62
                    <skipTests>true</skipTests>
63
                    <!-- Ignore test execution failure ? -->
64
                    <testFailureIgnore>false</testFailureIgnore>
65
                </configuration>
66
            </plugin>
67
        
68
            <!-- Skip test compilation ? -->
69
            <plugin>
70
                <groupId>org.apache.maven.plugins</groupId>
71
                <artifactId>maven-compiler-plugin</artifactId>
72
                <executions>
73
                    <execution>
74
                        <id>default-testCompile</id>
75
                        <phase>process-test-sources</phase>
76
                        <goals>
77
                            <goal>testCompile</goal>
78
                        </goals>
79
                        <configuration>
80
                            <skip>false</skip>
81
                        </configuration>
82
                    </execution>
83
                </executions>
84
            </plugin>
85
            <plugin>
86
                <groupId>org.apache.maven.plugins</groupId>
87
                <artifactId>maven-jar-plugin</artifactId>
88
                <configuration>
89
                </configuration>
90
                <executions>
91
                    <!-- Generates a jar file only with the test classes -->
92
                    <execution>
93
                        <goals>
94
                            <goal>test-jar</goal>
95
                        </goals>
96
                    </execution>
97
                </executions>
98
            </plugin>
99
        </plugins>
100
    </build>
101
    
102
</project>