Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libjni-proj4 / pom.xml @ 28749

History | View | Annotate | Download (1.53 KB)

1 28708 rgaitan
<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
        <groupId>org.gvsig</groupId>
5
        <artifactId>org.gvsig.jproj</artifactId>
6
        <packaging>jar</packaging>
7 28737 rgaitan
        <version>2.0</version>
8 28708 rgaitan
        <name>libjni-proj4 Library</name>
9
        <parent>
10
                <groupId>org.gvsig</groupId>
11
                <artifactId>gvsig-library-jni-base-pom</artifactId>
12
                <version>2.0-SNAPSHOT</version>
13
        </parent>
14
        <properties>
15
                <build-dir>${basedir}/../build</build-dir>
16
        </properties>
17
        <build>
18
                <plugins>
19
                        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
20
                        <plugin>
21
                                <groupId>org.apache.maven.plugins</groupId>
22
                                <artifactId>maven-surefire-plugin</artifactId>
23
                                <configuration>
24
                                        <skipTests>true</skipTests>
25
                                </configuration>
26
                        </plugin>
27
                </plugins>
28
        </build>
29
        <profiles>
30
                <profile>
31
                        <id>windows-profile</id>
32
                        <activation>
33
                                <os>
34
                                        <family>windows</family>
35
                                </os>
36
                        </activation>
37
                </profile>
38
                <!--
39
                        dependencies> <dependency> <groupId>org.gdal</groupId>
40
                        <artifactId>gdal</artifactId> <version>1.6.0</version>
41
                        <classifier>${native-classifier}</classifier> <type>tar.gz</type>
42
                        </dependency> </dependencies
43
                -->
44
                <profile>
45
                        <id>linux-profile</id>
46
                        <activation>
47
                                <os>
48
                                        <family>linux</family>
49
                                </os>
50
                        </activation>
51
                </profile>
52
                <profile>
53
                        <id>mac-profile</id>
54
                        <activation>
55
                                <os>
56
                                        <family>mac</family>
57
                                </os>
58
                        </activation>
59
                </profile>
60
        </profiles>
61
</project>