Statistics
| Revision:

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

History | View | Annotate | Download (2.96 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
        <description>Ermapper SDK data provider (ecw format) for gvSIG</description>
10
        <parent>
11
        <groupId>org.gvsig</groupId>
12
        <artifactId>org.gvsig.raster.ermapper</artifactId>
13
        <version>2.0.0-SNAPSHOT</version>
14
    </parent>
15
   <dependencies>
16
                   <dependency>
17
                <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.andami</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
            <dependency>
22
                        <groupId>org.gvsig</groupId>
23
                        <artifactId>org.gvsig.raster.ermapper.io</artifactId>
24
            <scope>runtime</scope>
25
                </dependency>  
26
        </dependencies>
27
        <profiles>
28
           <profile>
29
                        <id>gvsig-install</id>
30
                        <activation>
31
                                <activeByDefault>true</activeByDefault>
32
                        </activation>
33
                        <properties>
34
                                <!--Default gvSIG installation folder relative to the current workspace-->
35
                                <gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
36
                        </properties>
37
                </profile>       
38
        <profile>
39
            <id>linux-profile</id>
40
            <activation>
41
                                <property>
42
                                        <name>native-platform</name>
43
                                        <value>linux</value>
44
                                </property>
45
           </activation>
46
           <properties>
47
                           <package.info.categories>Raster</package.info.categories>
48
                           <package.info.operatingSystem>lin</package.info.operatingSystem>
49
                        <package.info.architecture>x86</package.info.architecture>
50
                        <extension.distribution.file>distribution/distribution-lin.xml</extension.distribution.file>
51
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
52
                        </properties>
53
        </profile>
54
        <profile>
55
            <id>windows-profile</id>
56
            <activation>
57
                <property>
58
                                        <name>native-platform</name>
59
                                        <value>win</value>
60
                                </property>
61
            </activation>
62
            <properties>
63
                    <package.info.categories>Raster, Formats</package.info.categories>
64
                           <package.info.operatingSystem>win</package.info.operatingSystem>
65
                        <package.info.architecture>x86</package.info.architecture>
66
                        <extension.distribution.file>distribution/distribution-win.xml</extension.distribution.file>
67
                <package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</package.info.dependencies>
68
                        </properties>
69
        </profile>
70
    </profiles>
71
    <properties>
72
            <package.info.state>testing</package.info.state>
73
            <package.info.baseDownloadURL>http://devel.gvsig.org/download/projects/Raster/pool/org.gvsig.raster.ermapper.app</package.info.baseDownloadURL>
74
    </properties>
75
</project>