Statistics
| Revision:

gvsig-raster / libjni-potrace / trunk / libjni-potrace / pom.xml @ 1780

History | View | Annotate | Download (2.14 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.jpotrace</artifactId>
6
        <packaging>jar</packaging>
7
        <version>2.0.0-SNAPSHOT</version>
8
        <name>libjni-potrace</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-potrace</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
                        <properties>
40
                                <build-dir>${basedir}\..\build</build-dir>
41
                        </properties>
42
            <dependencies>
43
                <dependency>
44
                    <groupId>com.microsoft</groupId>
45
                    <artifactId>visualcppredist</artifactId>
46
                    <version>2008</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
                <property>
56
                    <name>native-platform</name>
57
                    <value>linux</value>
58
                </property>
59
            </activation>
60
                </profile>
61
                <profile>
62
                        <id>mac-profile</id>
63
            <activation>
64
                <property>
65
                    <name>native-platform</name>
66
                    <value>mac</value>
67
                </property>
68
            </activation>
69
                </profile>
70
        </profiles>
71
</project>