Statistics
| Revision:

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

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

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

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

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

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

    
105
        </profiles>
106
</project>