Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2021 / extensions / org.gvsig.selectiontools.app / org.gvsig.selectiontools.app.extension / pom.xml @ 34110

History | View | Annotate | Download (1.9 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.selectiontools.app.extension</artifactId>
7
        <packaging>jar</packaging>
8
        <name>org.gvsig.selectiontools.app.extension</name>
9
        <parent>
10
                <groupId>org.gvsig</groupId>
11
                <artifactId>org.gvsig.selectiontools.app</artifactId>
12
                <version>1.0.0-SNAPSHOT</version>
13
        </parent>
14

    
15
        <dependencies>
16
                <dependency>
17
                        <groupId>org.gvsig</groupId>
18
                        <artifactId>org.gvsig.andami</artifactId>
19
                </dependency>
20
                <dependency>
21
                        <groupId>org.gvsig</groupId>
22
                        <artifactId>org.gvsig.i18n</artifactId>
23
                </dependency>
24
                <dependency>
25
                        <groupId>org.gvsig</groupId>
26
                        <artifactId>org.gvsig.tools.lib</artifactId>
27
                </dependency>
28
                <dependency>
29
                        <groupId>org.gvsig</groupId>
30
                        <artifactId>org.gvsig.app</artifactId>
31
                        <version>2.0-SNAPSHOT</version>
32
                        <exclusions>
33
                                <!-- TODO uncomment the exclusion and solve dependencies with the symbology 
34
                                        implementation <exclusion> <groupId>org.gvsig</groupId> <artifactId>org.gvsig.symbology</artifactId> 
35
                                        </exclusion> -->
36
                        </exclusions>
37
                </dependency>
38
        <dependency>
39
            <groupId>org.gvsig</groupId>
40
            <artifactId>org.gvsig.about.api</artifactId>
41
            <version>1.0.0-SNAPSHOT</version>
42
        </dependency>
43
        </dependencies>
44
        <profiles>
45
                <profile>
46
                        <id>gvsig-install</id>
47
                        <activation>
48
                                <activeByDefault>true</activeByDefault>
49
                        </activation>
50
                        <properties>
51
                                <!--
52
                                        Default gvSIG installation folder relative to the current workspace
53
                                -->
54
                                <gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
55
                        </properties>
56
                </profile>
57
        </profiles>
58
                <properties>
59
                <build-dir>${basedir}/../../build</build-dir>
60
        </properties>
61
</project>