Statistics
| Revision:

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

History | View | Annotate | Download (4.5 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.1-SNAPSHOT</version>
8
        </parent>
9
        <artifactId>org.gvsig.view3d.app.win.x86</artifactId>
10
        <name>org.gvsig.view3d.app.win.x86</name>
11
  
12
  <properties>
13
    <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
14
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
15
  </properties>
16
  
17
        <dependencyManagement>
18
                <dependencies>
19
                        <dependency>
20
                                <groupId>org.jogamp.jogl</groupId>
21
                                <artifactId>jogl-all</artifactId>
22
                                <version>2.2.1</version>
23
                                <classifier>natives-windows-i586</classifier>
24
                                <scope>runtime</scope>
25
                        </dependency>
26
                        <dependency>
27
                                <groupId>org.jogamp.gluegen</groupId>
28
                                <artifactId>gluegen-rt</artifactId>
29
                                <version>2.2.1</version>
30
                                <classifier>natives-windows-i586</classifier>
31
                                <scope>runtime</scope>
32
                        </dependency>
33
                </dependencies>
34
        </dependencyManagement>
35

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

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

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

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

    
128
        </profiles>
129

    
130
</project>