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 / pom.xml @ 742

History | View | Annotate | Download (3.77 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</artifactId>
9
  <name>org.gvsig.view3d.app.lin.x86</name>
10

    
11
   <properties>
12
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
13
    <gvsig.package.info.architecture>x86</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-i586</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-i586</classifier>
30
            <scope>runtime</scope>
31
        </dependency>
32
    </dependencies>
33
  </dependencyManagement>
34

    
35
  <dependencies>
36
    <dependency>
37
        <groupId>org.jogamp.jogl</groupId>
38
        <artifactId>jogl-all</artifactId>
39
        <classifier>natives-linux-i586</classifier>
40
    </dependency>
41
    <dependency>
42
        <groupId>org.jogamp.gluegen</groupId>
43
        <artifactId>gluegen-rt</artifactId>
44
        <classifier>natives-linux-i586</classifier>
45
    </dependency>
46
    <dependency>
47
        <groupId>org.gvsig</groupId>
48
        <artifactId>org.gvsig.view3d.app.common</artifactId>
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
  <!--
82
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
83
  configured in HOME/.gvsig-devel.properties
84
  -->
85
  <profiles>
86

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

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

    
115
  </profiles>
116
</project>