Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.view3d / org.gvsig.view3d.app / org.gvsig.view3d.app.lin.x86_64 / pom.xml @ 545

History | View | Annotate | Download (2.87 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.lin.x86_64</artifactId>
10
        <name>org.gvsig.view3d.app.lin.x86_64</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-linux-amd64</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-linux-amd64</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-linux-amd64</classifier>
40
                </dependency>
41
                <dependency>
42
                        <groupId>org.jogamp.gluegen</groupId>
43
                        <artifactId>gluegen-rt</artifactId>
44
                        <classifier>natives-linux-amd64</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
                                                        </artifactItems>
70
                                                </configuration>
71
                                        </execution>
72
                                </executions>
73
                        </plugin>
74
                </plugins>
75
        </build>
76

    
77
        <!-- The profiles only configure the automatic deploy of gvSIG plugin in 
78
                the gvSIG configured in HOME/.gvsig-devel.properties -->
79
        <profiles>
80

    
81
                <profile>
82
                        <id>gvsig-plugin-install-view3d-linux-x86_64</id>
83
                        <activation>
84
                                <os>
85
                                        <family>unix</family>
86
                                        <name>linux</name>
87
                                        <arch>x86_64</arch>
88
                                </os>
89
                        </activation>
90
                        <properties>
91
                                <gvsig.install.plugin>true</gvsig.install.plugin>
92
                        </properties>
93
                </profile>
94

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

    
109
        </profiles>
110
</project>