Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.view3d / org.gvsig.view3d.app / org.gvsig.view3d.app.win.x86 / pom.xml @ 552

History | View | Annotate | Download (4.3 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.0</version>
7
        </parent>
8
        <artifactId>org.gvsig.view3d.app.win.x86</artifactId>
9
        <name>org.gvsig.view3d.app.win.x86</name>
10
  
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-i586</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-i586</classifier>
25
                                <scope>runtime</scope>
26
                        </dependency>
27
                </dependencies>
28
        </dependencyManagement>
29

    
30
        <dependencies>
31
                <dependency>
32
                        <groupId>org.gvsig</groupId>
33
                        <artifactId>org.gvsig.view3d.app.common</artifactId>
34
                </dependency>
35
                <dependency>
36
                        <groupId>org.jogamp.jogl</groupId>
37
                        <artifactId>jogl-all</artifactId>
38
                        <classifier>natives-windows-i586</classifier>
39
                </dependency>
40
                <dependency>
41
                        <groupId>org.jogamp.gluegen</groupId>
42
                        <artifactId>gluegen-rt</artifactId>
43
                        <classifier>natives-windows-i586</classifier>
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
                                <artifactItem>
69
                                    <groupId>org.jogamp.gluegen</groupId>
70
                                    <artifactId>gluegen-rt</artifactId>
71
                                    <classifier>natives-windows-i586</classifier>
72
                                    <type>jar</type>
73
                                    <overWrite>true</overWrite>
74
                                    <outputDirectory>target/native/gluegen</outputDirectory>
75
                                </artifactItem>
76
                                <artifactItem>
77
                                    <groupId>org.jogamp.jogl</groupId>
78
                                    <artifactId>jogl-all</artifactId>
79
                                    <classifier>natives-windows-i586</classifier>
80
                                    <type>jar</type>
81
                                    <overWrite>true</overWrite>
82
                                    <outputDirectory>target/native/jogl</outputDirectory>
83
                                </artifactItem>
84
                            </artifactItems>
85
                        </configuration>
86
                    </execution>
87
                </executions>
88
            </plugin>
89
        </plugins>
90
    </build>
91

    
92
        <!-- The profiles only configure the automatic deploy of gvSIG plugin in 
93
                the gvSIG configured in HOME/.gvsig-devel.properties -->
94
        <profiles>
95

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

    
109
                <profile>
110
                        <id>gvsig-plugin-install-view3d-windows-i586</id>
111
                        <activation>
112
                                <os>
113
                                        <family>windows</family>
114
                                        <arch>i586</arch>
115
                                </os>
116
                        </activation>
117
                        <properties>
118
                                <gvsig.install.plugin>true</gvsig.install.plugin>
119
                        </properties>
120
                </profile>
121

    
122
        </profiles>
123

    
124
</project>