Statistics
| Revision:

gvsig-educa / org.gvsig.educa.thematicmap.app / trunk / org.gvsig.educa.thematicmap.app / org.gvsig.educa.thematicmap.app.viewer / pom.xml @ 220

History | View | Annotate | Download (2.24 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.educa.thematicmap.app.viewer</artifactId>
7
        <packaging>jar</packaging>
8
        <name>Thematic Maps viewer document</name>
9
        <description>Thematic Map document: read-only views which could share in packages (installed from standard gvSIG add-on installer)</description>
10
        <parent>
11
                <groupId>org.gvsig</groupId>
12
                <artifactId>org.gvsig.educa.thematicmap.app</artifactId>
13
                <version>1.0.0-SNAPSHOT</version>
14
        </parent>
15
        <properties>
16
                <package.info.dependencies>required: org.gvsig.app -ge 2</package.info.dependencies>
17
                <package.info.baseDownloadURL>http://devel.gvsig.org/download/projects/gvsig-educa/pool/org.gvsig.educa.thematicmap.app.viewer/</package.info.baseDownloadURL>
18
        </properties>
19

    
20
        <dependencies>
21
                <dependency>
22
                        <groupId>org.gvsig</groupId>
23
                        <artifactId>org.gvsig.app</artifactId>
24
                </dependency>
25
                <dependency>
26
                        <groupId>org.gvsig</groupId>
27
                        <artifactId>org.gvsig.educa.thematicmap.lib.api</artifactId>
28
                </dependency>
29
                <dependency>
30
                        <groupId>org.gvsig</groupId>
31
                        <artifactId>org.gvsig.educa.thematicmap.lib.spi</artifactId>
32
                </dependency>
33
                <dependency>
34
                        <groupId>org.gvsig</groupId>
35
                        <artifactId>org.gvsig.educa.thematicmap.lib.impl</artifactId>
36
                </dependency>
37
                <dependency>
38
                        <groupId>org.gvsig</groupId>
39
                        <artifactId>org.gvsig.educa.thematicmap.lib.prov.installer</artifactId>
40
                </dependency>                
41
                <dependency>
42
                        <groupId>org.gvsig</groupId>
43
                        <artifactId>org.gvsig.educa.thematicmap.lib.prov.qresp</artifactId>
44
                        <version>1.0.0-SNAPSHOT</version>
45
                </dependency>
46
                <dependency>
47
                        <groupId>org.apache.commons</groupId>
48
                        <artifactId>commons-lang3</artifactId>
49
                </dependency>
50
        </dependencies>
51
        <profiles>
52
                <profile>
53
                        <id>gvsig-install</id>
54
                        <activation>
55
                                <activeByDefault>true</activeByDefault>
56
                        </activation>
57
                        <properties>
58
                                <!--
59
                                        Default gvSIG installation folder relative to the current workspace
60
                                -->
61
                                <gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
62
                        </properties>
63
                </profile>
64
        </profiles>
65
</project>