Statistics
| Revision:

gvsig-raster / org.gvsig.raster.lizardtech / tags / 2.0.0 / org.gvsig.raster.lizardtech.app / pom.xml @ 1710

History | View | Annotate | Download (3.78 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" 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.raster.lizardtech.app</artifactId>
6
        <packaging>jar</packaging>
7
        <version>2.0.0</version>
8
        <name>Formats: MrSID file format support</name>
9
        <description>Lizardtech data provider (MrSID) for gvSIG</description>
10
        <parent>
11
        <groupId>org.gvsig</groupId>
12
        <artifactId>org.gvsig.maven.base.extension.pom</artifactId>
13
        <version>1.0.9</version>
14
    </parent>
15
     <scm>
16
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.lizardtech/tags/2.0.0/org.gvsig.raster.lizardtech.app</connection>
17
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.lizardtech/tags/2.0.0/org.gvsig.raster.lizardtech.app</developerConnection>
18
        <url>https://devel.gvsig.org/redmine/projects/gvsig-raster/repository/show/org.gvsig.raster.lizardtech/tags/2.0.0/org.gvsig.raster.lizardtech.app</url>
19
    </scm>
20
    <dependencyManagement>
21
                <dependencies>
22
                <dependency>
23
                                <groupId>org.gvsig</groupId>
24
                                <artifactId>org.gvsig.raster.lizardtech</artifactId>
25
                                <version>2.0.0</version>
26
                                <type>pom</type>
27
                                <scope>import</scope>
28
                        </dependency>
29
            </dependencies>
30
    </dependencyManagement>
31
   <dependencies>
32
              <dependency>
33
                <groupId>org.gvsig</groupId>
34
            <artifactId>org.gvsig.andami</artifactId>
35
            <scope>compile</scope>
36
        </dependency>
37
            <dependency>
38
                        <groupId>org.gvsig</groupId>
39
                        <artifactId>org.gvsig.raster.lizardtech.io</artifactId>
40
            <scope>runtime</scope>
41
                </dependency>  
42
        </dependencies>
43
        <profiles>
44
           <profile>
45
                        <id>gvsig-install</id>
46
                        <activation>
47
                                <activeByDefault>true</activeByDefault>
48
                        </activation>
49
                        <properties>
50
                                <!--Default gvSIG installation folder relative to the current workspace-->
51
                                <gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
52
                        </properties>
53
                </profile>       
54
        <profile>
55
            <id>linux-profile</id>
56
            <activation>
57
                    <property>
58
                                        <name>native-platform</name>
59
                                        <value>linux</value>
60
                                </property>
61
           </activation>
62
           <properties>
63
                           <package.info.categories>Raster</package.info.categories>
64
                           <package.info.operatingSystem>lin</package.info.operatingSystem>
65
                        <package.info.architecture>x86</package.info.architecture>
66
                        <extension.distribution.file>distribution/distribution-lin.xml</extension.distribution.file>
67
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
68
                        </properties>
69
        </profile>
70
        <profile>
71
            <id>windows-profile</id>
72
            <activation>
73
                 <property>
74
                                        <name>native-platform</name>
75
                                        <value>win</value>
76
                                </property>
77
            </activation>
78
            <properties>
79
                    <package.info.categories>Raster, Formats</package.info.categories>
80
                           <package.info.operatingSystem>win</package.info.operatingSystem>
81
                        <package.info.architecture>x86</package.info.architecture>
82
                        <extension.distribution.file>distribution/distribution-win.xml</extension.distribution.file>
83
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
84
                        </properties>
85
        </profile>
86
    </profiles>
87
    <properties>
88
            <package.info.state>final</package.info.state>
89
            <package.info.baseDownloadURL>http://devel.gvsig.org/download/projects/Raster/pool/org.gvsig.raster.lizardtech.app</package.info.baseDownloadURL>
90
    </properties>
91
</project>