Statistics
| Revision:

root / org.gvsig.educa.thematicmap.app / trunk / org.gvsig.educa.thematicmap.app / org.gvsig.educa.thematicmap.app.viewer / pom.xml @ 81

History | View | Annotate | Download (2.05 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
        </properties>
18

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