Statistics
| Revision:

gvsig-gdal / trunk / org.gvsig.gdal / org.gvsig.gdal.app / org.gvsig.gdal.app.mainplugin / org.gvsig.gdal.app.mainplugin.lin.x86_64 / pom.xml @ 236

History | View | Annotate | Download (3.93 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2
<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/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.gdal.app.mainplugin.lin.x86_64</artifactId>
5
  <packaging>jar</packaging>
6

    
7
  <parent>
8
    <groupId>org.gvsig</groupId>
9
    <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
10
    <version>1.0.32-SNAPSHOT</version>
11
  </parent>
12

    
13

    
14
  <properties>
15
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
16
    <gvsig.package.info.architecture>x86_64</gvsig.package.info.architecture>
17

    
18
    <gdal.classifier>osgeolive-9.0-ubuntu-14.04.3-amd64</gdal.classifier>
19
    <gdal.version>1.11.2.4</gdal.version>
20
  </properties>
21

    
22
  <dependencyManagement>
23
    <dependencies>
24
      <dependency>
25
        <groupId>org.gdal</groupId>
26
        <artifactId>gdal</artifactId>
27
        <version>${gdal.version}</version>
28
        <classifier>${gdal.classifier}</classifier>
29
        <scope>runtime</scope>
30
        <type>tar.gz</type>
31
      </dependency>
32
      <dependency>
33
        <groupId>org.gdal</groupId>
34
        <artifactId>gdal</artifactId>
35
        <version>${gdal.version}</version>
36
        <classifier>${gdal.classifier}</classifier>
37
        <scope>runtime</scope>
38
        <type>jar</type>
39
      </dependency>
40
    </dependencies>
41
  </dependencyManagement>
42

    
43

    
44
  <dependencies>
45
    <dependency>
46
      <groupId>org.gvsig</groupId>
47
      <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
48
      <type>zip</type>
49
    </dependency>
50
    <dependency>
51
      <groupId>org.gdal</groupId>
52
      <artifactId>gdal</artifactId>
53
      <classifier>${gdal.classifier}</classifier>
54
      <scope>runtime</scope>
55
      <type>jar</type>
56
    </dependency>
57
    <dependency>
58
      <groupId>org.gdal</groupId>
59
      <artifactId>gdal</artifactId>
60
      <classifier>${gdal.classifier}</classifier>
61
      <scope>runtime</scope>
62
      <type>tar.gz</type>
63
    </dependency>
64
  </dependencies>
65

    
66

    
67

    
68
  <build>
69
    <plugins>
70

    
71
      <plugin>
72
        <groupId>org.apache.maven.plugins</groupId>
73
        <artifactId>maven-dependency-plugin</artifactId>
74
        <executions>
75
          <execution>
76
            <id>unpack</id>
77
            <phase>process-sources</phase>
78
            <goals>
79
              <goal>unpack</goal>
80
            </goals>
81
            <configuration>
82
              <artifactItems>
83
                <artifactItem>
84
                  <groupId>org.gvsig</groupId>
85
                  <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
86
                  <type>zip</type>
87
                  <overWrite>true</overWrite>
88
                  <outputDirectory>target</outputDirectory>
89
                </artifactItem>
90
                <artifactItem>
91
                  <groupId>org.gdal</groupId>
92
                  <artifactId>gdal</artifactId>
93
                  <version>${gdal.version}</version>
94
                  <classifier>${gdal.classifier}</classifier>
95
                  <type>tar.gz</type>
96
                  <overWrite>true</overWrite>
97
                  <outputDirectory>target/native/gdal</outputDirectory>
98
                </artifactItem>
99
              </artifactItems>
100
            </configuration>
101
          </execution>
102
        </executions>
103
      </plugin>
104

    
105
    </plugins>
106
  </build>
107

    
108
  <profiles>
109
    <profile>
110
      <id>install_plugin_for_linux_x86_64</id>
111
      <activation>
112
        <os>
113
          <family>Linux</family>
114
          <arch>x86_64</arch>
115
        </os>
116
      </activation>
117
      <properties>
118
        <gvsig.install.plugin>true</gvsig.install.plugin>
119
      </properties>
120
    </profile>
121

    
122
    <profile>
123
      <id>install_plugin_for_linux_amd64</id>
124
      <activation>
125
        <os>
126
          <family>Linux</family>
127
          <arch>amd64</arch>
128
        </os>
129
      </activation>
130
      <properties>
131
        <gvsig.install.plugin>true</gvsig.install.plugin>
132
      </properties>
133
    </profile>
134
  </profiles>
135

    
136

    
137
</project>