Statistics
| Revision:

gvsig-raster / org.gvsig.raster.gdal / trunk / org.gvsig.raster.gdal / org.gvsig.raster.gdal.jni / pom.xml @ 1940

History | View | Annotate | Download (3.17 KB)

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
        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.jgdal</artifactId>
5
        <packaging>jar</packaging>
6
        <version>2.0.4-SNAPSHOT</version>
7
        <name>org.gvsig.jgdal</name>
8

    
9
    <parent>
10
                <groupId>org.gvsig</groupId>
11
                <artifactId>gvsig-base-library-jni-pom</artifactId>
12
                <version>2.0-SNAPSHOT</version>
13
        </parent>
14
        
15
        <properties>
16
                <build-dir>${basedir}/../../build</build-dir>
17
                <eclipse.project.name>org.gvsig.jgdal</eclipse.project.name>
18
        </properties>
19
        <build>
20
                <plugins>
21
                        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
22
                        <plugin>
23
                                <groupId>org.apache.maven.plugins</groupId>
24
                                <artifactId>maven-surefire-plugin</artifactId>
25
                                <configuration>
26
                                        <skipTests>true</skipTests>
27
                                </configuration>
28
                        </plugin>
29
                </plugins>
30
        </build>
31
        <profiles>
32
                <profile>
33
                        <id>windows-profile</id>
34
                        <activation>
35
                                <property>
36
                                        <name>native-platform</name>
37
                                        <value>win</value>
38
                                </property>
39
                        </activation>
40
                        <dependencies>
41
                                <dependency>
42
                                        <groupId>org.gdal</groupId>
43
                                        <artifactId>gdal</artifactId>
44
                                        <version>1.8.1</version>
45
                                        <classifier>${native-classifier}</classifier>
46
                                        <type>tar.gz</type>
47
                                </dependency>
48
                                <dependency>
49
                                        <groupId>com.microsoft</groupId>
50
                                        <artifactId>visualcppredist</artifactId>
51
                                        <version>2008</version>
52
                                        <classifier>${native-classifier}</classifier>
53
                                        <type>tar.gz</type>
54
                                </dependency>
55
                        </dependencies>
56
                </profile>
57
                <profile>
58
                        <id>linux-profile</id>
59
                        <activation>
60
                                <property>
61
                                        <name>native-platform</name>
62
                                        <value>linux</value>
63
                                </property>
64
                        </activation>
65
                        <dependencies>
66
                                <dependency>
67
                                        <groupId>org.gdal</groupId>
68
                                        <artifactId>gdal</artifactId>
69
                                        <version>1.8.1</version>
70
                                        <classifier>${native-classifier}</classifier>
71
                                        <type>tar.gz</type>
72
                                </dependency>
73
                                <!-- <dependency> <groupId>eu.fbk</groupId> <artifactId>grass</artifactId> 
74
                                        <version>6.0.2</version> <classifier>${native-classifier}</classifier> <type>tar.gz</type> 
75
                                        <scope>runtime</scope> </dependency> -->
76
                        </dependencies>
77
                </profile>
78
                <profile>
79
                        <id>fedora11-profile</id>
80
                        <activation>
81
                                <property>
82
                                        <name>native-platform</name>
83
                                        <value>fedora11</value>
84
                                </property>
85
                        </activation>
86
                        <dependencies>
87
                                <dependency>
88
                                        <groupId>org.gdal</groupId>
89
                                        <artifactId>gdal</artifactId>
90
                                        <version>1.6.0</version>
91
                                        <classifier>${native-classifier}</classifier>
92
                                        <type>tar.gz</type>
93
                                </dependency>
94
                        </dependencies>
95
                </profile>
96
                <profile>
97
                        <id>mac-profile</id>
98
                        <activation>
99
                                <property>
100
                                        <name>native-platform</name>
101
                                        <value>mac</value>
102
                                </property>
103
                        </activation>
104
                        <dependencies>
105
                                <dependency>
106
                                        <groupId>org.gdal</groupId>
107
                                        <artifactId>gdal</artifactId>
108
                                        <version>1.8.1</version>
109
                                        <classifier>${native-classifier}</classifier>
110
                                        <type>tar.gz</type>
111
                                </dependency>
112
                        </dependencies>
113
                </profile>
114
        </profiles>
115
</project>
116