Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.installer / org.gvsig.desktop.installer.izpack / org.gvsig.desktop.installer.izpack.copyjre / pom.xml @ 43830

History | View | Annotate | Download (2.78 KB)

1 42794 jjdelcerro
<?xml version="1.0" encoding="UTF-8"?>
2
<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">
3
4 43830 jjdelcerro
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.desktop.installer.izpack.copyjre</artifactId>
6
    <packaging>jar</packaging>
7
    <name>${project.artifactId}</name>
8
    <parent>
9
        <groupId>org.gvsig</groupId>
10
        <artifactId>org.gvsig.desktop.installer.izpack</artifactId>
11
        <version>1.1.0</version>
12
    </parent>
13 42794 jjdelcerro
14 43830 jjdelcerro
    <properties>
15
        <maven.javadoc.skip>true</maven.javadoc.skip>
16
    </properties>
17 42794 jjdelcerro
18 43830 jjdelcerro
    <dependencies>
19 42794 jjdelcerro
20 43830 jjdelcerro
        <dependency>
21
            <groupId>org.codehaus.izpack</groupId>
22
            <artifactId>izpack-core</artifactId>
23
            <scope>compile</scope>
24
        </dependency>
25
        <dependency>
26
            <groupId>org.codehaus.izpack</groupId>
27
            <artifactId>izpack-panel</artifactId>
28
            <scope>compile</scope>
29
        </dependency>
30 42794 jjdelcerro
31 43830 jjdelcerro
    </dependencies>
32 42794 jjdelcerro
33
34 43830 jjdelcerro
    <build>
35
        <plugins>
36 42794 jjdelcerro
37 43830 jjdelcerro
            <plugin>
38
                <!-- Skip compilation tests -->
39
                <groupId>org.apache.maven.plugins</groupId>
40
                <artifactId>maven-compiler-plugin</artifactId>
41
                <executions>
42
                    <execution>
43
                        <id>default-testCompile</id>
44
                        <phase>process-test-sources</phase>
45
                        <goals>
46
                            <goal>testCompile</goal>
47
                        </goals>
48
                        <configuration>
49
                            <skip>true</skip>
50
                        </configuration>
51
                    </execution>
52
                </executions>
53
            </plugin>
54 42794 jjdelcerro
55 43830 jjdelcerro
            <plugin>
56
                <!-- Skip test execution -->
57
                <groupId>org.apache.maven.plugins</groupId>
58
                <artifactId>maven-surefire-plugin</artifactId>
59
                <configuration>
60
                    <skipTests>true</skipTests>
61
                </configuration>
62
            </plugin>
63 42794 jjdelcerro
64 43830 jjdelcerro
            <plugin>
65
                <groupId>org.codehaus.gmaven</groupId>
66
                <artifactId>gmaven-plugin</artifactId>
67
                <configuration>
68
                    <skip>true</skip>
69
                </configuration>
70
                <executions>
71
                    <execution>
72
                        <id>prepare-gvsig-product-and-packages</id>
73
                        <phase>None</phase>
74
                    </execution>
75 42794 jjdelcerro
76 43830 jjdelcerro
                    <execution>
77
                        <id>deploy-gvsig-packages</id>
78
                        <phase>None</phase>
79
                    </execution>
80
                </executions>
81
            </plugin>
82 42794 jjdelcerro
83 43830 jjdelcerro
        </plugins>
84
    </build>
85 42794 jjdelcerro
86
</project>