Statistics
| Revision:

gvsig-gdal / trunk / org.gvsig.gdal / org.gvsig.gdal.app / org.gvsig.gdal.app.mainplugin / org.gvsig.gdal.app.mainplugin.lin_ubuntu_14.04.x86_64 / pom.xml @ 394

History | View | Annotate | Download (4 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_ubuntu_14.04.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.61-SNAPSHOT</version>
11
  </parent>
12

    
13

    
14
  <properties>
15
    <gvsig.package.info.operatingSystem>lin_ubuntu_14.04</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.5</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
        <!--
37
        <classifier>${gdal.classifier}</classifier>
38
        -->
39
        <scope>runtime</scope>
40
        <type>jar</type>
41
      </dependency>
42
    </dependencies>
43
  </dependencyManagement>
44

    
45

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

    
70

    
71

    
72
  <build>
73
    <plugins>
74

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

    
109
    </plugins>
110
  </build>
111

    
112
  <profiles>
113
    <profile>
114
      <id>install_plugin_for_linux_x86_64</id>
115
      <activation>
116
        <os>
117
          <family>Linux</family>
118
          <arch>x86_64</arch>
119
        </os>
120
      </activation>
121
      <properties>
122
        <gvsig.install.plugin>true</gvsig.install.plugin>
123
      </properties>
124
    </profile>
125

    
126
    <profile>
127
      <id>install_plugin_for_linux_amd64</id>
128
      <activation>
129
        <os>
130
          <family>Linux</family>
131
          <arch>amd64</arch>
132
        </os>
133
      </activation>
134
      <properties>
135
        <gvsig.install.plugin>true</gvsig.install.plugin>
136
      </properties>
137
    </profile>
138
  </profiles>
139

    
140

    
141
</project>