Statistics
| Revision:

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

History | View | Annotate | Download (3.48 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.4-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
  
11
  <properties>
12
    <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
13
    <gvsig.package.info.architecture>x86_64</gvsig.package.info.architecture>
14
  </properties>
15
  
16
        <dependencyManagement>
17
                <dependencies>
18
                        <dependency>
19
                                <groupId>org.jogamp.jogl</groupId>
20
                                <artifactId>jogl-all</artifactId>
21
                                <version>2.2.1</version>
22
                                <classifier>natives-windows-amd64</classifier>
23
                                <scope>runtime</scope>
24
                        </dependency>
25
                        <dependency>
26
                                <groupId>org.jogamp.gluegen</groupId>
27
                                <artifactId>gluegen-rt</artifactId>
28
                                <version>2.2.1</version>
29
                                <classifier>natives-windows-amd64</classifier>
30
                                <scope>runtime</scope>
31
                        </dependency>
32
                </dependencies>
33
        </dependencyManagement>
34

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

    
81
        <!-- The profiles only configure the automatic deploy of gvSIG plugin in 
82
                the gvSIG configured in HOME/.gvsig-devel.properties -->
83
        <profiles>
84

    
85
                <profile>
86
                        <id>gvsig-plugin-install-view3d-windows-x86_64</id>
87
                        <activation>
88
                                <os>
89
                                        <family>windows</family>
90
                                        <arch>x86_64</arch>
91
                                </os>
92
                        </activation>
93
                        <properties>
94
                                <gvsig.install.plugin>true</gvsig.install.plugin>
95
                        </properties>
96
                </profile>
97

    
98
                <profile>
99
                        <id>gvsig-plugin-install-view3d-windows-amd64</id>
100
                        <activation>
101
                                <os>
102
                                        <family>windows</family>
103
                                        <arch>amd64</arch>
104
                                </os>
105
                        </activation>
106
                        <properties>
107
                                <gvsig.install.plugin>true</gvsig.install.plugin>
108
                        </properties>
109
                </profile>
110

    
111
        </profiles>
112
</project>