Statistics
| Revision:

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

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

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

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

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

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

    
123
        </profiles>
124

    
125
</project>