Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2006 / libraries / libjni-gdal / pom.xml @ 39647

History | View | Annotate | Download (2.01 KB)

1 28770 rgaitan
<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</version>
9
        <name>libjni-gdal Library</name>
10
        <parent>
11
                <groupId>org.gvsig</groupId>
12
                <artifactId>gvsig-library-jni-base-pom</artifactId>
13
                <version>2.0-SNAPSHOT</version>
14
        </parent>
15
        <properties>
16
                <build-dir>${basedir}/../build</build-dir>
17
        </properties>
18
        <build>
19
                <plugins>
20
                        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
21
                        <plugin>
22
                                <groupId>org.apache.maven.plugins</groupId>
23
                                <artifactId>maven-surefire-plugin</artifactId>
24
                                <configuration>
25
                                        <skipTests>true</skipTests>
26
                                </configuration>
27
                        </plugin>
28
                </plugins>
29
        </build>
30
        <profiles>
31
                <profile>
32
                        <id>windows-profile</id>
33
                        <activation>
34
                                <os>
35
                                        <family>windows</family>
36
                                </os>
37
                        </activation>
38
                        <properties>
39
                                <!-- This hack is necessary to allow correct search in windows -->
40
                                <build-dir>${basedir}\..\build</build-dir>
41
                        </properties>
42
                        <dependencies>
43
                                <dependency>
44
                                        <groupId>org.gdal</groupId>
45
                                        <artifactId>gdal</artifactId>
46
                                        <version>1.6.0</version>
47
                                        <classifier>${native-classifier}</classifier>
48
                                        <type>tar.gz</type>
49
                                </dependency>
50
                        </dependencies>
51
                </profile>
52
                <profile>
53
                        <id>linux-profile</id>
54
                        <activation>
55
                                <os>
56
                                        <family>linux</family>
57
                                </os>
58
                        </activation>
59
                </profile>
60
                <profile>
61
                        <id>mac-profile</id>
62
                        <activation>
63
                                <os>
64
                                        <family>mac</family>
65
                                </os>
66
                        </activation>
67
                        <dependencies>
68
                                <dependency>
69
                                        <groupId>org.gdal</groupId>
70
                                        <artifactId>gdal</artifactId>
71
                                        <version>1.6.0</version>
72
                                        <classifier>${native-classifier}</classifier>
73
                                        <type>tar.gz</type>
74
                                </dependency>
75
                        </dependencies>
76
                </profile>
77
        </profiles>
78
</project>