Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libjni-ecw / pom.xml @ 37156

History | View | Annotate | Download (3.03 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
        <groupId>org.gvsig</groupId>
6
        <artifactId>org.gvsig.jecw</artifactId>
7
        <packaging>jar</packaging>
8
        <version>2.0.0-SNAPSHOT</version>
9
        <name>libjni-ecw Library</name>
10
        <parent>
11
                <groupId>org.gvsig</groupId>
12
                <artifactId>gvsig-base-library-jni-pom</artifactId>
13
                <version>2.0-SNAPSHOT</version>
14
        </parent>
15
        <properties>
16
                <build-dir>${basedir}/../build</build-dir>
17
        <eclipse.project.name>libjni-ecw</eclipse.project.name>
18
        </properties>
19
        <build>
20
                <plugins>
21
                        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
22
                        <plugin>
23
                                <groupId>org.apache.maven.plugins</groupId>
24
                                <artifactId>maven-surefire-plugin</artifactId>
25
                                <configuration>
26
                                        <skipTests>true</skipTests>
27
                                </configuration>
28
                        </plugin>
29
                </plugins>
30
        </build>
31
        <profiles>
32
                <profile>
33
                        <id>windows-profile</id>
34
            <activation>
35
                <property>
36
                    <name>native-platform</name>
37
                    <value>win</value>
38
                </property>
39
            </activation>
40
                        <properties>
41
                                <!-- This hack is necessary to allow correct search in windows -->
42
                                <build-dir>${basedir}\..\build</build-dir>
43
                        </properties>
44
                        <dependencies>
45
                                <dependency>
46
                                        <groupId>com.ermapper</groupId>
47
                                        <artifactId>ecw</artifactId>
48
                                        <version>3.3.20070509</version>
49
                                        <classifier>${native-classifier}</classifier>
50
                                        <type>tar.gz</type>
51
                                </dependency>
52
                <dependency>
53
                    <groupId>com.microsoft</groupId>
54
                    <artifactId>visualcppredist</artifactId>
55
                    <version>2008</version>
56
                    <classifier>${native-classifier}</classifier>
57
                    <type>tar.gz</type>
58
                </dependency>
59
                        </dependencies>
60
                </profile>
61
                <profile>
62
                        <id>linux-profile</id>
63
            <activation>
64
                <property>
65
                    <name>native-platform</name>
66
                    <value>linux</value>
67
                </property>
68
            </activation>
69
                        <dependencies>
70
                                <dependency>
71
                                        <groupId>com.ermapper</groupId>
72
                                        <artifactId>ecw</artifactId>
73
                                        <version>3.3.20070509</version>
74
                                        <classifier>${native-classifier}</classifier>
75
                                        <type>tar.gz</type>
76
                                </dependency>
77
                        </dependencies>
78
                </profile>
79
                <profile>
80
                        <id>mac-profile</id>
81
            <activation>
82
                <property>
83
                    <name>native-platform</name>
84
                    <value>mac</value>
85
                </property>
86
            </activation>
87
                        <dependencies>
88
                                <dependency>
89
                                        <groupId>com.ermapper</groupId>
90
                                        <artifactId>ecw</artifactId>
91
                                        <version>3.3.20070509</version>
92
                                        <classifier>${native-classifier}</classifier>
93
                                        <type>tar.gz</type>
94
                                </dependency>
95
                        </dependencies>
96
                </profile>
97
        </profiles>
98
</project>
99