Statistics
| Revision:

gvsig-raster / org.gvsig.raster.lizardtech / trunk / org.gvsig.raster.lizardtech / org.gvsig.raster.lizardtech.jni / pom.xml @ 2843

History | View | Annotate | Download (2.86 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.jmrsid</artifactId>
6
        <packaging>jar</packaging>
7
        <version>2.0.0-SNAPSHOT</version>
8
        <name>libjni-mrsid</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-mrsid</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.lizardtech</groupId>
42
                                        <artifactId>mrsid</artifactId>
43
                                        <version>7.0.0.2164</version>
44
                                        <classifier>${native_classifier}</classifier>
45
                                        <type>tar.gz</type>
46
                                </dependency>
47
                <dependency>
48
                    <groupId>com.microsoft</groupId>
49
                    <artifactId>visualcppredist</artifactId>
50
                    <version>2008</version>
51
                    <classifier>${native_classifier}</classifier>
52
                    <type>tar.gz</type>
53
                </dependency>
54
                        </dependencies>
55
                </profile>
56
                <profile>
57
            <id>linux-profile</id>
58
            <activation>
59
                <property>
60
                    <name>native-platform</name>
61
                    <value>linux</value>
62
                </property>
63
            </activation>
64
                        <dependencies>
65
                                <dependency>
66
                                        <groupId>com.lizardtech</groupId>
67
                                        <artifactId>mrsid</artifactId>
68
                                        <version>7.0.0.2164</version>
69
                                        <classifier>${native_classifier}</classifier>
70
                                        <type>tar.gz</type>
71
                                </dependency>
72
                        </dependencies>
73
                </profile>
74
                <profile>
75
                        <id>mac-profile</id>
76
            <activation>
77
                <property>
78
                    <name>native-platform</name>
79
                    <value>mac</value>
80
                </property>
81
            </activation>
82
                        <dependencies>
83
                                <dependency>
84
                                        <groupId>com.lizardtech</groupId>
85
                                        <artifactId>mrsid</artifactId>
86
                                        <version>7.0.0.2164</version>
87
                                        <classifier>${native_classifier}</classifier>
88
                                        <type>tar.gz</type>
89
                                </dependency>
90
                        </dependencies>
91
                </profile>
92
        </profiles>
93
</project>
94