Statistics
| Revision:

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

History | View | Annotate | Download (3.6 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-SNAPSHOT</version>
7
  </parent>
8
  <artifactId>org.gvsig.view3d.app.lin.x86</artifactId>
9
  <name>org.gvsig.view3d.app.lin.x86</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-i586</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-i586</classifier>
25
            <scope>runtime</scope>
26
        </dependency>
27
    </dependencies>
28
  </dependencyManagement>
29
  
30
  <dependencies>
31
    <dependency>
32
        <groupId>org.jogamp.jogl</groupId>
33
        <artifactId>jogl-all</artifactId>
34
        <classifier>natives-linux-i586</classifier>
35
    </dependency>
36
    <dependency>
37
        <groupId>org.jogamp.gluegen</groupId>
38
        <artifactId>gluegen-rt</artifactId>
39
        <classifier>natives-linux-i586</classifier>
40
    </dependency>
41
    <dependency>
42
        <groupId>org.gvsig</groupId>
43
        <artifactId>org.gvsig.view3d.app.common</artifactId>
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
  <!-- 
77
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
78
  configured in HOME/.gvsig-devel.properties
79
  -->
80
  <profiles>
81
  
82
    <profile>
83
      <id>gvsig-plugin-install-view3d-linux-x86</id>
84
      <activation>
85
         <os>
86
             <family>unix</family>
87
             <name>linux</name>
88
             <arch>x86</arch>
89
         </os>
90
      </activation>
91
        <properties>
92
          <gvsig.install.plugin>true</gvsig.install.plugin>
93
        </properties>
94
    </profile>
95

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

    
110
  </profiles>
111
</project>