Statistics
| Revision:

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

History | View | Annotate | Download (3.05 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.lin.x86_64</artifactId>
10
        <name>org.gvsig.view3d.app.lin.x86_64</name>
11
  
12
  <properties>
13
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
14
    <gvsig.package.info.architecture>x86_64</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-linux-amd64</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-linux-amd64</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-linux-amd64</classifier>
45
                </dependency>
46
                <dependency>
47
                        <groupId>org.jogamp.gluegen</groupId>
48
                        <artifactId>gluegen-rt</artifactId>
49
                        <classifier>natives-linux-amd64</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
                                                        </artifactItems>
75
                                                </configuration>
76
                                        </execution>
77
                                </executions>
78
                        </plugin>
79
                </plugins>
80
        </build>
81

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

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

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

    
114
        </profiles>
115
</project>