Statistics
| Revision:

gvsig-3d / 2.1 / branches / org.gvsig.view3d_vector_and_extrusion_2.3 / org.gvsig.view3d / org.gvsig.view3d / org.gvsig.view3d.app / org.gvsig.view3d.app.lin.x86_64 / pom.xml @ 742

History | View | Annotate | Download (3.04 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.1.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
  <properties>
12
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
13
    <gvsig.package.info.architecture>x86_64</gvsig.package.info.architecture>
14
  </properties>
15

    
16
        <dependencyManagement>
17
                <dependencies>
18
                        <dependency>
19
                                <groupId>org.jogamp.jogl</groupId>
20
                                <artifactId>jogl-all</artifactId>
21
                                <version>2.2.1</version>
22
                                <classifier>natives-linux-amd64</classifier>
23
                                <scope>runtime</scope>
24
                        </dependency>
25
                        <dependency>
26
                                <groupId>org.jogamp.gluegen</groupId>
27
                                <artifactId>gluegen-rt</artifactId>
28
                                <version>2.2.1</version>
29
                                <classifier>natives-linux-amd64</classifier>
30
                                <scope>runtime</scope>
31
                        </dependency>
32
                </dependencies>
33
        </dependencyManagement>
34

    
35
        <dependencies>
36
                <dependency>
37
                        <groupId>org.gvsig</groupId>
38
                        <artifactId>org.gvsig.view3d.app.common</artifactId>
39
                </dependency>
40
                <dependency>
41
                        <groupId>org.jogamp.jogl</groupId>
42
                        <artifactId>jogl-all</artifactId>
43
                        <classifier>natives-linux-amd64</classifier>
44
                </dependency>
45
                <dependency>
46
                        <groupId>org.jogamp.gluegen</groupId>
47
                        <artifactId>gluegen-rt</artifactId>
48
                        <classifier>natives-linux-amd64</classifier>
49
                </dependency>
50
        </dependencies>
51

    
52
        <build>
53
                <plugins>
54
                        <plugin>
55
                                <groupId>org.apache.maven.plugins</groupId>
56
                                <artifactId>maven-dependency-plugin</artifactId>
57
                                <executions>
58
                                        <execution>
59
                                                <id>unpack</id>
60
                                                <phase>process-sources</phase>
61
                                                <goals>
62
                                                        <goal>unpack</goal>
63
                                                </goals>
64
                                                <configuration>
65
                                                        <artifactItems>
66
                                                                <artifactItem>
67
                                                                        <groupId>org.gvsig</groupId>
68
                                                                        <artifactId>org.gvsig.view3d.app.common</artifactId>
69
                                                                        <type>zip</type>
70
                                                                        <overWrite>true</overWrite>
71
                                                                        <outputDirectory>target</outputDirectory>
72
                                                                </artifactItem>
73
                                                        </artifactItems>
74
                                                </configuration>
75
                                        </execution>
76
                                </executions>
77
                        </plugin>
78
                </plugins>
79
        </build>
80

    
81
        <!-- The profiles only configure the automatic deploy of gvSIG plugin in
82
                the gvSIG configured in HOME/.gvsig-devel.properties -->
83
        <profiles>
84

    
85
                <profile>
86
                        <id>gvsig-plugin-install-view3d-linux-x86_64</id>
87
                        <activation>
88
                                <os>
89
                                        <family>unix</family>
90
                                        <name>linux</name>
91
                                        <arch>x86_64</arch>
92
                                </os>
93
                        </activation>
94
                        <properties>
95
                                <gvsig.install.plugin>true</gvsig.install.plugin>
96
                        </properties>
97
                </profile>
98

    
99
                <profile>
100
                        <id>gvsig-plugin-install-view3d-linux-amd64</id>
101
                        <activation>
102
                                <os>
103
                                        <family>unix</family>
104
                                        <name>linux</name>
105
                                        <arch>amd64</arch>
106
                                </os>
107
                        </activation>
108
                        <properties>
109
                                <gvsig.install.plugin>true</gvsig.install.plugin>
110
                        </properties>
111
                </profile>
112

    
113
        </profiles>
114
</project>