Statistics
| Revision:

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

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

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

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

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

    
108
        </profiles>
109
</project>