Statistics
| Revision:

gvsig-raster / org.gvsig.raster.lizardtech / trunk / org.gvsig.raster.lizardtech / org.gvsig.raster.lizardtech.app / pom.xml @ 942

History | View | Annotate | Download (2.79 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
2

    
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
        <modelVersion>4.0.0</modelVersion>
6
        <artifactId>org.gvsig.raster.lizardtech.app</artifactId>
7
        <packaging>jar</packaging>
8
        <name>Formats: MrSID file format support</name>
9
        <description>Lizardtech data provider (MrSID) for gvSIG</description>
10
        <version>2.0.0-SNAPSHOT</version>
11
        <parent>
12
        <groupId>org.gvsig</groupId>
13
        <artifactId>org.gvsig.maven.base.extension.pom</artifactId>
14
        <version>1.0.8-SNAPSHOT</version>
15
    </parent>
16
   <dependencies>
17
              <dependency>
18
                <groupId>org.gvsig</groupId>
19
            <artifactId>org.gvsig.andami</artifactId>
20
            <version>2.0-SNAPSHOT</version>
21
            <scope>compile</scope>
22
        </dependency>
23
            <dependency>
24
                        <groupId>org.gvsig</groupId>
25
                        <artifactId>org.gvsig.raster.lizardtech.io</artifactId>
26
                        <version>2.0.0-SNAPSHOT</version>
27
            <scope>runtime</scope>
28
                </dependency>  
29
        </dependencies>
30
        <profiles>
31
           <profile>
32
                        <id>gvsig-install</id>
33
                        <activation>
34
                                <activeByDefault>true</activeByDefault>
35
                        </activation>
36
                        <properties>
37
                                <!--Default gvSIG installation folder relative to the current workspace-->
38
                                <gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
39
                        </properties>
40
                </profile>       
41
        <profile>
42
            <id>linux-profile</id>
43
            <activation>
44
                    <property>
45
                                        <name>native-platform</name>
46
                                        <value>linux</value>
47
                                </property>
48
           </activation>
49
           <properties>
50
                           <package.info.operatingSystem>lin</package.info.operatingSystem>
51
                        <package.info.architecture>x86</package.info.architecture>
52
                        <extension.distribution.file>distribution/distribution-lin.xml</extension.distribution.file>
53
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
54
                        </properties>
55
        </profile>
56
        <profile>
57
            <id>windows-profile</id>
58
            <activation>
59
                 <property>
60
                                        <name>native-platform</name>
61
                                        <value>win</value>
62
                                </property>
63
            </activation>
64
            <properties>
65
                           <package.info.operatingSystem>win</package.info.operatingSystem>
66
                        <package.info.architecture>x86</package.info.architecture>
67
                        <extension.distribution.file>distribution/distribution-win.xml</extension.distribution.file>
68
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
69
                        </properties>
70
        </profile>
71
    </profiles>
72
    <properties>
73
            <package.info.state>alpha3</package.info.state>
74
    </properties>
75
</project>