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

History | View | Annotate | Download (3.3 KB)

1 47243 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
  <modelVersion>4.0.0</modelVersion>
3
  <parent>
4
    <groupId>org.gvsig</groupId>
5
    <artifactId>org.gvsig.xml2db.swing</artifactId>
6 47255 jjdelcerro
    <version>2.0.416</version>
7 47243 jjdelcerro
  </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
  </dependencies>
47
48
49
    <build>
50
        <plugins>
51
52
            <plugin>
53
                <groupId>org.apache.maven.plugins</groupId>
54
                <artifactId>maven-surefire-plugin</artifactId>
55
                <configuration>
56
                    <!-- Skip test execution ? -->
57
                    <skipTests>true</skipTests>
58
                    <!-- Ignore test execution failure ? -->
59
                    <testFailureIgnore>false</testFailureIgnore>
60
                </configuration>
61
            </plugin>
62
63
            <!-- Skip test compilation ? -->
64
            <plugin>
65
                <groupId>org.apache.maven.plugins</groupId>
66
                <artifactId>maven-compiler-plugin</artifactId>
67
                <executions>
68
                    <execution>
69
                        <id>default-testCompile</id>
70
                        <phase>process-test-sources</phase>
71
                        <goals>
72
                            <goal>testCompile</goal>
73
                        </goals>
74
                        <configuration>
75
                            <skip>false</skip>
76
                        </configuration>
77
                    </execution>
78
                </executions>
79
            </plugin>
80
            <plugin>
81
                <groupId>org.apache.maven.plugins</groupId>
82
                <artifactId>maven-jar-plugin</artifactId>
83
                <configuration>
84
                </configuration>
85
                <executions>
86
                    <!-- Generates a jar file only with the test classes -->
87
                    <execution>
88
                        <goals>
89
                            <goal>test-jar</goal>
90
                        </goals>
91
                    </execution>
92
                </executions>
93
            </plugin>
94
        </plugins>
95
    </build>
96
97
</project>