Statistics
| Revision:

gvsig-3d / 2.1 / branches / org.gvsig.view3d_vector_and_extrusion_2.3 / org.gvsig.view3d / org.gvsig.view3d / org.gvsig.view3d.app / org.gvsig.view3d.app.win.x86_64 / pom.xml @ 742

History | View | Annotate | Download (4.49 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.1.0</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
                                <artifactItem>
74
                                    <groupId>org.jogamp.gluegen</groupId>
75
                                    <artifactId>gluegen-rt</artifactId>
76
                                    <classifier>natives-windows-amd64</classifier>
77
                                    <type>jar</type>
78
                                    <overWrite>true</overWrite>
79
                                    <outputDirectory>target/jogamp-rt</outputDirectory>
80
                                </artifactItem>
81
                                <artifactItem>
82
                                    <groupId>org.jogamp.jogl</groupId>
83
                                    <artifactId>jogl-all</artifactId>
84
                                    <classifier>natives-windows-amd64</classifier>
85
                                    <type>jar</type>
86
                                    <overWrite>true</overWrite>
87
                                    <outputDirectory>target/jogamp-rt</outputDirectory>
88
                                </artifactItem>
89
                            </artifactItems>
90
                        </configuration>
91
                    </execution>
92
                </executions>
93
            </plugin>
94
        </plugins>
95
    </build>
96

    
97
        <!-- The profiles only configure the automatic deploy of gvSIG plugin in
98
                the gvSIG configured in HOME/.gvsig-devel.properties -->
99
        <profiles>
100

    
101
                <profile>
102
                        <id>gvsig-plugin-install-view3d-windows-x86_64</id>
103
                        <activation>
104
                                <os>
105
                                        <family>windows</family>
106
                                        <arch>x86_64</arch>
107
                                </os>
108
                        </activation>
109
                        <properties>
110
                                <gvsig.install.plugin>true</gvsig.install.plugin>
111
                        </properties>
112
                </profile>
113

    
114
                <profile>
115
                        <id>gvsig-plugin-install-view3d-windows-amd64</id>
116
                        <activation>
117
                                <os>
118
                                        <family>windows</family>
119
                                        <arch>amd64</arch>
120
                                </os>
121
                        </activation>
122
                        <properties>
123
                                <gvsig.install.plugin>true</gvsig.install.plugin>
124
                        </properties>
125
                </profile>
126

    
127
        </profiles>
128
</project>