Statistics
| Revision:

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

History | View | Annotate | Download (3.73 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.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-i586</classifier>
39
    </dependency>
40
    <dependency>
41
        <groupId>org.jogamp.gluegen</groupId>
42
        <artifactId>gluegen-rt</artifactId>
43
        <classifier>natives-linux-i586</classifier>
44
    </dependency>
45
    <dependency>
46
        <groupId>org.gvsig</groupId>
47
        <artifactId>org.gvsig.view3d.app.common</artifactId>
48
    </dependency>
49
  </dependencies>
50
  
51
  <build>
52
        <plugins>
53
            <plugin>
54
                <groupId>org.apache.maven.plugins</groupId>
55
                <artifactId>maven-dependency-plugin</artifactId>
56
                <executions>
57
                    <execution>
58
                        <id>unpack</id>
59
                        <phase>process-sources</phase>
60
                        <goals>
61
                            <goal>unpack</goal>
62
                        </goals>
63
                        <configuration>
64
                            <artifactItems>
65
                                <artifactItem>
66
                                    <groupId>org.gvsig</groupId>
67
                                    <artifactId>org.gvsig.view3d.app.common</artifactId>
68
                                    <type>zip</type>
69
                                    <overWrite>true</overWrite>
70
                                    <outputDirectory>target</outputDirectory>
71
                                </artifactItem>
72
                            </artifactItems>
73
                        </configuration>
74
                    </execution>
75
                </executions>
76
            </plugin>
77
        </plugins>
78
    </build>
79
  
80
  <!-- 
81
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
82
  configured in HOME/.gvsig-devel.properties
83
  -->
84
  <profiles>
85
  
86
    <profile>
87
      <id>gvsig-plugin-install-view3d-linux-x86</id>
88
      <activation>
89
         <os>
90
             <family>unix</family>
91
             <name>linux</name>
92
             <arch>x86</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-i586</id>
102
      <activation>
103
         <os>
104
             <family>unix</family>
105
             <name>linux</name>
106
             <arch>i586</arch>
107
         </os>
108
      </activation>
109
      <properties>
110
         <gvsig.install.plugin>true</gvsig.install.plugin>
111
      </properties>
112
    </profile>
113

    
114
  </profiles>
115
</project>