Statistics
| Revision:

gvsig-gdal / trunk / org.gvsig.gdal / org.gvsig.gdal.app / org.gvsig.gdal.app.mainplugin / org.gvsig.gdal.app.mainplugin.win.x86_64 / pom.xml @ 29

History | View | Annotate | Download (2.89 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.win.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.0-SNAPSHOT</version>
11
        </parent>
12
        
13
         <properties>
14
                <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
15
                <gvsig.package.info.architecture>x86_64</gvsig.package.info.architecture>
16

    
17
                <gdal.classifier>win-vc1600-x86_64-dynamic</gdal.classifier>
18
                <gdal.version>1.11.2</gdal.version>
19
        </properties>
20

    
21
        <dependencyManagement>
22
                <dependencies>
23
                        <dependency>
24
                                <groupId>org.gdal</groupId>
25
                                <artifactId>gdal</artifactId>
26
                                <version>${gdal.version}</version>
27
                                <classifier>${gdal.classifier}</classifier>
28
                                <scope>runtime</scope>
29
                                <type>tar.gz</type>
30
                        </dependency>
31
                </dependencies>
32
        </dependencyManagement>
33

    
34

    
35
        <dependencies>
36
                <dependency>
37
                        <groupId>org.gvsig</groupId>
38
                        <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
39
                        <type>zip</type>
40
                </dependency>
41
                <dependency>
42
                        <groupId>org.gdal</groupId>
43
                        <artifactId>gdal</artifactId>
44
                        <scope>runtime</scope>
45
                </dependency>
46
                <dependency>
47
                        <groupId>org.gdal</groupId>
48
                        <artifactId>gdal</artifactId>
49
                        <classifier>${gdal.classifier}</classifier>
50
                        <scope>runtime</scope>
51
                        <type>tar.gz</type>
52
                </dependency>
53
        </dependencies>
54

    
55
  
56

    
57
  <build>
58
    <plugins>
59
  
60
      <plugin>
61
        <groupId>org.apache.maven.plugins</groupId>
62
        <artifactId>maven-dependency-plugin</artifactId>
63
<!--         <artifactId>maven-compiler-plugin</artifactId> -->
64
        <executions>
65
          <execution>
66
                  <id>unpack</id>
67
                <phase>process-sources</phase>
68
                <goals>
69
                  <goal>unpack</goal>
70
                </goals>
71
                <configuration>
72
                  <artifactItems>
73
                    <artifactItem>
74
                            <groupId>org.gdal</groupId>
75
                            <artifactId>gdal</artifactId>
76
                            <classifier>${gdal.classifier}</classifier>
77
                            <version>${gdal.version}</version>
78
                            <type>tar.gz</type>
79
                                        <overWrite>true</overWrite>
80
                                        <outputDirectory>target/native/gdal</outputDirectory>
81
                    </artifactItem>
82
                  </artifactItems>
83
                </configuration>
84
          </execution>
85
        </executions>
86
          </plugin>
87
  
88
  
89
    </plugins>
90
  </build>
91

    
92
  <profiles>
93
  
94
    <profile>
95
      <id>gvsig-plugin-install-driver-windows-x86_64</id>
96
      <activation>
97
         <os>
98
             <family>windows</family>
99
             <arch>x86_64</arch>
100
         </os>
101
      </activation>
102
          <properties>
103
            <gvsig.install.plugin>true</gvsig.install.plugin>
104
          </properties>
105
    </profile>
106
  </profiles>
107
  
108
</project>
109