Statistics
| Revision:

gvsig-raster / org.gvsig.raster.ermapper / trunk / org.gvsig.raster.ermapper / org.gvsig.raster.ermapper.app / pom.xml @ 1091

History | View | Annotate | Download (3.08 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.ermapper.app</artifactId>
7
        <packaging>jar</packaging>
8
        <name>Formats: Ecw file format support</name>
9
        <version>2.0.0-SNAPSHOT</version>
10
        <description>Ermapper SDK data provider (ecw format) for gvSIG</description>
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.ermapper.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.categories>Raster</package.info.categories>
51
                           <package.info.operatingSystem>lin</package.info.operatingSystem>
52
                        <package.info.architecture>x86</package.info.architecture>
53
                        <extension.distribution.file>distribution/distribution-lin.xml</extension.distribution.file>
54
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
55
                        </properties>
56
        </profile>
57
        <profile>
58
            <id>windows-profile</id>
59
            <activation>
60
                <property>
61
                                        <name>native-platform</name>
62
                                        <value>win</value>
63
                                </property>
64
            </activation>
65
            <properties>
66
                    <package.info.categories>Raster, Formats</package.info.categories>
67
                           <package.info.operatingSystem>win</package.info.operatingSystem>
68
                        <package.info.architecture>x86</package.info.architecture>
69
                        <extension.distribution.file>distribution/distribution-win.xml</extension.distribution.file>
70
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
71
                        </properties>
72
        </profile>
73
    </profiles>
74
    <properties>
75
            <package.info.state>devel</package.info.state>
76
            <package.info.baseDownloadURL>http://devel.gvsig.org/download/projects/Raster/pool/org.gvsig.raster.ermapper.app</package.info.baseDownloadURL>
77
    </properties>
78
</project>