Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2027 / libjni-gdal / pom.xml @ 35434

History | View | Annotate | Download (3.17 KB)

1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
        <modelVersion>4.0.0</modelVersion>
5
        <groupId>org.gvsig</groupId>
6
        <artifactId>org.gvsig.jgdal</artifactId>
7
        <packaging>jar</packaging>
8
        <version>2.0.1-SNAPSHOT</version>
9
        <name>libjni-gdal</name>
10
        <parent>
11
                <groupId>org.gvsig</groupId>
12
                <artifactId>gvsig-base-library-jni-pom</artifactId>
13
                <version>2.0-SNAPSHOT</version>
14
        </parent>
15
        <properties>
16
                <build-dir>${basedir}/../build</build-dir>
17
        <eclipse.project.name>libjni-gdal</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
                                <os>
36
                                        <family>windows</family>
37
                                </os>
38
                        </activation>
39
                        <properties>
40
                                <!-- This hack is necessary to allow correct search in windows -->
41
                                <build-dir>${basedir}\..\build</build-dir>
42
                        </properties>
43
                        <dependencies>
44
                                <dependency>
45
                                        <groupId>org.gdal</groupId>
46
                                        <artifactId>gdal</artifactId>
47
                                        <version>1.7.1</version>
48
                                        <classifier>${native-classifier}</classifier>
49
                                        <type>tar.gz</type>
50
                                </dependency>
51
                <dependency>
52
                    <groupId>com.microsoft</groupId>
53
                    <artifactId>visualcppredist</artifactId>
54
                    <version>2008</version>
55
                    <classifier>${native-classifier}</classifier>
56
                    <type>tar.gz</type>
57
                </dependency>
58
                        </dependencies>
59
                </profile>
60
                <profile>
61
                        <id>linux-profile</id>
62
                        <activation>
63
                                <os>
64
                                        <family>linux</family>
65
                                </os>
66
                        </activation>
67
            <dependencies>
68
                <dependency>
69
                    <groupId>org.gdal</groupId>
70
                    <artifactId>gdal</artifactId>
71
                    <version>1.6.3</version>
72
                    <classifier>${native-classifier}</classifier>
73
                    <type>tar.gz</type>
74
                </dependency>
75
                <!-- 
76
                <dependency>
77
                    <groupId>eu.fbk</groupId>
78
                    <artifactId>grass</artifactId>
79
                    <version>6.0.2</version>
80
                    <classifier>${native-classifier}</classifier>
81
                    <type>tar.gz</type>
82
                    <scope>runtime</scope>
83
                </dependency>
84
                 -->
85
            </dependencies>
86
        </profile>
87
                <profile>
88
                        <id>mac-profile</id>
89
                        <activation>
90
                                <os>
91
                                        <family>mac</family>
92
                                </os>
93
                        </activation>
94
                        <dependencies>
95
                                <dependency>
96
                                        <groupId>org.gdal</groupId>
97
                                        <artifactId>gdal</artifactId>
98
                                        <version>1.6.0</version>
99
                                        <classifier>${native-classifier}</classifier>
100
                                        <type>tar.gz</type>
101
                                </dependency>
102
                        </dependencies>
103
                </profile>
104
        </profiles>
105
</project>
106