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

History | View | Annotate | Download (3.23 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.view3d.lib</artifactId>
6
                <version>1.1.0</version>
7
        </parent>
8
        <artifactId>org.gvsig.view3d.lib.impl</artifactId>
9
        <name>org.gvsig.view3d.lib.impl</name>
10

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

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

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

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