Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.installer / org.gvsig.desktop.installer.izpack / org.gvsig.desktop.installer.izpack.copyjre / pom.xml @ 42794

History | View | Annotate | Download (2.19 KB)

1
<?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
  <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

    
14
  <properties>
15
      <maven.javadoc.skip>true</maven.javadoc.skip>
16
  </properties>
17

    
18
  <dependencies>
19

    
20
  <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

    
31
  </dependencies>
32

    
33

    
34
  <build>
35
    <plugins>
36

    
37
      <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

    
55
      <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

    
64
      <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

    
76
          <execution>
77
            <id>deploy-gvsig-packages</id>
78
            <phase>None</phase>
79
          </execution>
80
        </executions>
81
      </plugin>
82

    
83
    </plugins>
84
  </build>
85

    
86
</project>