Statistics
| Revision:

gvsig-3d / 2.1 / branches / org.gvsig.view3d_vector_and_extrusion_2.3 / org.gvsig.view3d / org.gvsig.view3d / org.gvsig.view3d.swing / org.gvsig.view3d.swing.api / pom.xml @ 742

History | View | Annotate | Download (3.47 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.swing</artifactId>
6
                <version>1.1.0</version>
7
        </parent>
8
        <artifactId>org.gvsig.view3d.swing.api</artifactId>
9
        <name>org.gvsig.view3d.swing.api</name>
10
        <dependencies>
11
                <dependency>
12
                        <groupId>org.gvsig</groupId>
13
                        <artifactId>org.gvsig.tools.lib</artifactId>
14
                </dependency>
15
                <dependency>
16
                        <groupId>org.gvsig</groupId>
17
                        <artifactId>org.gvsig.fmap.mapcontext.api</artifactId>
18
                </dependency>
19
                <dependency>
20
                        <groupId>gov.nasa</groupId>
21
                        <artifactId>worldwind</artifactId>
22
                </dependency>
23
                <dependency>
24
                        <groupId>gov.nasa</groupId>
25
                        <artifactId>worldwindx</artifactId>
26
                        <version>2.0.0</version>
27
                </dependency>
28
                <dependency>
29
                        <groupId>org.jogamp.gluegen</groupId>
30
                        <artifactId>gluegen-rt</artifactId>
31
                </dependency>
32
                <dependency>
33
                        <groupId>org.jogamp.jogl</groupId>
34
                        <artifactId>jogl-all</artifactId>
35
                </dependency>
36
                <dependency>
37
                        <groupId>org.gvsig</groupId>
38
                        <artifactId>org.gvsig.tools.swing.api</artifactId>
39
                </dependency>
40
                <dependency>
41
                  <groupId>org.gvsig</groupId>
42
                  <artifactId>org.gvsig.view3d.lib.api</artifactId>
43
                </dependency>
44
        </dependencies>
45

    
46
      <build>
47
        <pluginManagement>
48
            <plugins>
49
                <plugin>
50
                    <artifactId>maven-compiler-plugin</artifactId>
51
                    <version>2.3.2</version>
52
                    <configuration>
53
                        <source>1.8</source>
54
                        <target>1.8</target>
55
                        <encoding>ISO-8859-1</encoding>
56
                    </configuration>
57
                </plugin>
58
                <plugin>
59
                    <groupId>org.codehaus.mojo</groupId>
60
                    <artifactId>animal-sniffer-maven-plugin</artifactId>
61
                    <version>1.14</version>
62
                </plugin>
63
            </plugins>
64
        </pluginManagement>
65

    
66
        <plugins>
67
            <plugin>
68
                <artifactId>maven-compiler-plugin</artifactId>
69
                <configuration>
70
                    <source>1.8</source>
71
                    <target>1.8</target>
72
                    <encoding>ISO-8859-1</encoding>
73
                </configuration>
74
            </plugin>
75
            <plugin>
76
                <groupId>org.codehaus.mojo</groupId>
77
                <artifactId>animal-sniffer-maven-plugin</artifactId>
78

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