Statistics
| Revision:

gvsig-3d / 2.1 / branches / org.gvsig.view3d_vector_and_extrusion_2.3 / org.gvsig.view3d / org.gvsig.view3d / org.gvsig.view3d.lib / org.gvsig.view3d.lib.impl / pom.xml @ 741

History | View | Annotate | Download (3.24 KB)

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
        <modelVersion>4.0.0</modelVersion>
4
        <parent>
5
                <groupId>org.gvsig</groupId>
6
                <artifactId>org.gvsig.view3d.lib</artifactId>
7
                <version>1.1.0-SNAPSHOT</version>
8
        </parent>
9
        <artifactId>org.gvsig.view3d.lib.impl</artifactId>
10
        <name>org.gvsig.view3d.lib.impl</name>
11

    
12
        <dependencies>
13
                <dependency>
14
                        <groupId>org.gvsig</groupId>
15
                        <artifactId>org.gvsig.view3d.lib.api</artifactId>
16
                </dependency>
17
                <dependency>
18
                        <groupId>org.gvsig</groupId>
19
                        <artifactId>org.gvsig.raster.fmap</artifactId>
20
                </dependency>
21
                <dependency>
22
                        <groupId>gov.nasa</groupId>
23
                        <artifactId>worldwind</artifactId>
24
                </dependency>
25
                <dependency>
26
                        <groupId>gov.nasa</groupId>
27
                        <artifactId>worldwindx</artifactId>
28
                        <version>2.0.0</version>
29
                </dependency>
30
                <dependency>
31
                        <groupId>org.jogamp.gluegen</groupId>
32
                        <artifactId>gluegen-rt</artifactId>
33
                </dependency>
34
                <dependency>
35
                        <groupId>org.jogamp.jogl</groupId>
36
                        <artifactId>jogl-all</artifactId>
37
                </dependency>
38
        </dependencies>
39

    
40
      <build>
41
        <pluginManagement>
42
            <plugins>
43
                <plugin>
44
                    <artifactId>maven-compiler-plugin</artifactId>
45
                    <version>2.3.2</version>
46
                    <configuration>
47
                        <source>1.8</source>
48
                        <target>1.8</target>
49
                        <encoding>ISO-8859-1</encoding>
50
                    </configuration>
51
                </plugin>
52
                <plugin>
53
                    <groupId>org.codehaus.mojo</groupId>
54
                    <artifactId>animal-sniffer-maven-plugin</artifactId>
55
                    <version>1.14</version>
56
                </plugin>
57
            </plugins>
58
        </pluginManagement>
59

    
60
        <plugins>
61
            <plugin>
62
                <artifactId>maven-compiler-plugin</artifactId>
63
                <configuration>
64
                    <source>1.8</source>
65
                    <target>1.8</target>
66
                    <encoding>ISO-8859-1</encoding>
67
                </configuration>
68
            </plugin>
69
            <plugin>
70
                <groupId>org.codehaus.mojo</groupId>
71
                <artifactId>animal-sniffer-maven-plugin</artifactId>
72

    
73
                <executions>
74
                    <execution>
75
                        <id>check-java-api</id>
76
                        <phase>package</phase>
77
                        <goals>
78
                            <goal>check</goal>
79
                        </goals>
80
                        <configuration>
81
                            <skip>false</skip>
82
                            <signature>
83
                                <groupId>org.codehaus.mojo.signature</groupId>
84
                                <artifactId>java18</artifactId>
85
                                <version>1.0</version>
86
                            </signature>
87
                            <ignores>
88
                                <ignore>gov.nasa.worldwind.*</ignore>
89
                            </ignores>
90
                        </configuration>
91
                    </execution>
92
                </executions>
93
            </plugin>
94
        </plugins>
95
    </build>
96
</project>