Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.view3d / org.gvsig.view3d.app / org.gvsig.view3d.app.win.x86_64 / pom.xml @ 545

History | View | Annotate | Download (3.29 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.app</artifactId>
7
                <version>1.0.0-SNAPSHOT</version>
8
        </parent>
9
        <artifactId>org.gvsig.view3d.app.win.x86_64</artifactId>
10
        <name>org.gvsig.view3d.app.win.x86_64</name>
11
        <dependencyManagement>
12
                <dependencies>
13
                        <dependency>
14
                                <groupId>org.jogamp.jogl</groupId>
15
                                <artifactId>jogl-all</artifactId>
16
                                <version>2.2.1</version>
17
                                <classifier>natives-windows-amd64</classifier>
18
                                <scope>runtime</scope>
19
                        </dependency>
20
                        <dependency>
21
                                <groupId>org.jogamp.gluegen</groupId>
22
                                <artifactId>gluegen-rt</artifactId>
23
                                <version>2.2.1</version>
24
                                <classifier>natives-windows-amd64</classifier>
25
                                <scope>runtime</scope>
26
                        </dependency>
27
                </dependencies>
28
        </dependencyManagement>
29

    
30
        <dependencies>
31
                <dependency>
32
                        <groupId>org.jogamp.jogl</groupId>
33
                        <artifactId>jogl-all</artifactId>
34
                        <classifier>natives-windows-amd64</classifier>
35
                </dependency>
36
                <dependency>
37
                        <groupId>org.jogamp.gluegen</groupId>
38
                        <artifactId>gluegen-rt</artifactId>
39
                        <classifier>natives-windows-amd64</classifier>
40
                </dependency>
41
                <dependency>
42
                        <groupId>org.gvsig</groupId>
43
                        <artifactId>org.gvsig.view3d.app.common</artifactId>
44
                </dependency>
45
        </dependencies>
46
        
47
        <build>
48
        <plugins>
49
            <plugin>
50
                <groupId>org.apache.maven.plugins</groupId>
51
                <artifactId>maven-dependency-plugin</artifactId>
52
                <executions>
53
                    <execution>
54
                        <id>unpack</id>
55
                        <phase>process-sources</phase>
56
                        <goals>
57
                            <goal>unpack</goal>
58
                        </goals>
59
                        <configuration>
60
                            <artifactItems>
61
                                <artifactItem>
62
                                    <groupId>org.gvsig</groupId>
63
                                    <artifactId>org.gvsig.view3d.app.common</artifactId>
64
                                    <type>zip</type>
65
                                    <overWrite>true</overWrite>
66
                                    <outputDirectory>target</outputDirectory>
67
                                </artifactItem>
68
                            </artifactItems>
69
                        </configuration>
70
                    </execution>
71
                </executions>
72
            </plugin>
73
        </plugins>
74
    </build>
75

    
76
        <!-- The profiles only configure the automatic deploy of gvSIG plugin in 
77
                the gvSIG configured in HOME/.gvsig-devel.properties -->
78
        <profiles>
79

    
80
                <profile>
81
                        <id>gvsig-plugin-install-view3d-windows-x86_64</id>
82
                        <activation>
83
                                <os>
84
                                        <family>windows</family>
85
                                        <arch>x86_64</arch>
86
                                </os>
87
                        </activation>
88
                        <properties>
89
                                <gvsig.install.plugin>true</gvsig.install.plugin>
90
                        </properties>
91
                </profile>
92

    
93
                <profile>
94
                        <id>gvsig-plugin-install-view3d-windows-amd64</id>
95
                        <activation>
96
                                <os>
97
                                        <family>windows</family>
98
                                        <arch>amd64</arch>
99
                                </os>
100
                        </activation>
101
                        <properties>
102
                                <gvsig.install.plugin>true</gvsig.install.plugin>
103
                        </properties>
104
                </profile>
105

    
106
        </profiles>
107
</project>