Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libjni-proj4 / pom.xml @ 37568

History | View | Annotate | Download (2.12 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
        <artifactId>org.gvsig.jproj</artifactId>
6
        <packaging>jar</packaging>
7
        <version>2.0.1-SNAPSHOT</version>
8
        <name>libjni-proj4</name>
9
        <parent>
10
                <groupId>org.gvsig</groupId>
11
                <artifactId>gvsig-base-library-jni-pom</artifactId>
12
                <version>2.0-SNAPSHOT</version>
13
        </parent>
14
        <properties>
15
                <build-dir>${basedir}/../build</build-dir>
16
        <eclipse.project.name>libjni-proj4</eclipse.project.name>
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
                <property>
35
                    <name>native-platform</name>
36
                    <value>win</value>
37
                </property>
38
            </activation>
39
            <dependencies>
40
                <dependency>
41
                    <groupId>com.microsoft</groupId>
42
                    <artifactId>visualcppredist</artifactId>
43
                    <version>2008</version>
44
                    <classifier>${native-classifier}</classifier>
45
                    <type>tar.gz</type>
46
                </dependency>
47
            </dependencies>
48
                </profile>
49
                <profile>
50
                        <id>linux-profile</id>
51
            <activation>
52
                <property>
53
                    <name>native-platform</name>
54
                    <value>linux</value>
55
                </property>
56
            </activation>
57
                </profile>
58
                <profile>
59
                        <id>mac-profile</id>
60
            <activation>
61
                <property>
62
                    <name>native-platform</name>
63
                    <value>mac</value>
64
                </property>
65
            </activation>
66
                  </profile>
67
        </profiles>
68
</project>
69