Statistics
| Revision:

gvsig-raster / org.gvsig.raster.ermapper / trunk / org.gvsig.raster.ermapper / org.gvsig.raster.ermapper.jni / pom.xml @ 2449

History | View | Annotate | Download (3 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.jecw</artifactId>
6
        <packaging>jar</packaging>
7
        <version>2.0.0-SNAPSHOT</version>
8
        <name>org.gvsig.jecw</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>org.gvsig.jecw</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
                                <!-- 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>com.ermapper</groupId>
46
                                        <artifactId>ecw</artifactId>
47
                                        <version>3.3.20070509</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
                <property>
64
                    <name>native-platform</name>
65
                    <value>linux</value>
66
                </property>
67
            </activation>
68
                        <dependencies>
69
                                <dependency>
70
                                        <groupId>com.ermapper</groupId>
71
                                        <artifactId>ecw</artifactId>
72
                                        <version>3.3.20070509</version>
73
                                        <classifier>${native_classifier}</classifier>
74
                                        <type>tar.gz</type>
75
                                </dependency>
76
                        </dependencies>
77
                </profile>
78
                <profile>
79
                        <id>mac-profile</id>
80
            <activation>
81
                <property>
82
                    <name>native-platform</name>
83
                    <value>mac</value>
84
                </property>
85
            </activation>
86
                        <dependencies>
87
                                <dependency>
88
                                        <groupId>com.ermapper</groupId>
89
                                        <artifactId>ecw</artifactId>
90
                                        <version>3.3.20070509</version>
91
                                        <classifier>${native_classifier}</classifier>
92
                                        <type>tar.gz</type>
93
                                </dependency>
94
                        </dependencies>
95
                </profile>
96
        </profiles>
97
</project>
98