Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libjni-mrsid / pom.xml @ 36251

History | View | Annotate | Download (2.69 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.jmrsid</artifactId>
7
        <packaging>jar</packaging>
8
        <version>2.0.0-SNAPSHOT</version>
9
        <name>libjni-mrsid</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-mrsid</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
                                <os>
36
                                        <family>windows</family>
37
                                </os>
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.lizardtech</groupId>
46
                                        <artifactId>mrsid</artifactId>
47
                                        <version>7.0.0.2164</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
                                <os>
64
                                        <family>linux</family>
65
                                </os>
66
                        </activation>
67
                        <dependencies>
68
                                <dependency>
69
                                        <groupId>com.lizardtech</groupId>
70
                                        <artifactId>mrsid</artifactId>
71
                                        <version>7.0.0.2164</version>
72
                                        <classifier>${native-classifier}</classifier>
73
                                        <type>tar.gz</type>
74
                                </dependency>
75
                        </dependencies>
76
                </profile>
77
                <profile>
78
                        <id>mac-profile</id>
79
                        <activation>
80
                                <os>
81
                                        <family>mac</family>
82
                                </os>
83
                        </activation>
84
                        <dependencies>
85
                                <dependency>
86
                                        <groupId>com.lizardtech</groupId>
87
                                        <artifactId>mrsid</artifactId>
88
                                        <version>7.0.0.2164</version>
89
                                        <classifier>${native-classifier}</classifier>
90
                                        <type>tar.gz</type>
91
                                </dependency>
92
                        </dependencies>
93
                </profile>
94
        </profiles>
95
</project>
96