Statistics
| Revision:

gvsig-gdal / trunk / org.gvsig.gdal / org.gvsig.gdal.app / org.gvsig.gdal.app.mainplugin / org.gvsig.gdal.app.mainplugin.lin.x86 / pom.xml @ 35

History | View | Annotate | Download (2.94 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</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</version>
11
        </parent>
12

    
13

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

    
18
                <gdal.classifier>linux-Ubuntu-15.04-gcc4-i686-dynamic</gdal.classifier>
19
                <gdal.version>1.11.2</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
                </dependencies>
33
        </dependencyManagement>
34

    
35

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

    
56

    
57

    
58
        <build>
59
                <plugins>
60

    
61
                        <plugin>
62
                                <groupId>org.apache.maven.plugins</groupId>
63
                                <artifactId>maven-dependency-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.gvsig</groupId>
75
                                                                        <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
76
                                                                        <type>zip</type>
77
                                                                        <overWrite>true</overWrite>
78
                                                                        <outputDirectory>target</outputDirectory>
79
                                                                </artifactItem>
80
                                                                <artifactItem>
81
                                                                        <groupId>org.gdal</groupId>
82
                                                                        <artifactId>gdal</artifactId>
83
                                                                        <version>${gdal.version}</version>
84
                                                                        <classifier>${gdal.classifier}</classifier>
85
                                                                        <type>tar.gz</type>
86
                                                                        <overWrite>true</overWrite>
87
                                                                        <outputDirectory>target/native/gdal</outputDirectory>
88
                                                                </artifactItem>
89
                                                        </artifactItems>
90
                                                </configuration>
91
                                        </execution>
92
                                </executions>
93
                        </plugin>
94

    
95
                </plugins>
96
        </build>
97

    
98

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

    
115
</project>