Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2038 / build / extension-pom / pom.xml @ 37137

History | View | Annotate | Download (3.19 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
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
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6

    
7
    <modelVersion>4.0.0</modelVersion>
8
    <groupId>org.gvsig</groupId>
9
    <artifactId>gvsig-base-extension-pom</artifactId>
10
    <packaging>pom</packaging>
11
    <version>2.0-SNAPSHOT</version>
12
    <name>extension-base-pom</name>
13
    <parent>
14
        <groupId>org.gvsig</groupId>
15
        <artifactId>org.gvsig.maven.base.extension.pom</artifactId>
16
        <version>1.0.8-SNAPSHOT</version>
17
    </parent>
18
    <scm>
19
        <connection>
20
                        scm:svn:https://svn.forge.osor.eu/svn/gvsig-desktop/branches/v2_0_0_prep            
21
            </connection>
22
        <developerConnection>
23
                        scm:svn:https://svn.forge.osor.eu/svn/gvsig-desktop/branches/v2_0_0_prep
24
            </developerConnection>
25
        <url>https://forge.osor.eu/plugins/scmsvn/viewcvs.php/branches/v2_0_0_prep?root=gvsig-desktop</url>
26
        <tag>v2_0_0_prep</tag>
27
    </scm>
28
    <dependencyManagement>
29
        <dependencies>
30
            <dependency>
31
                <groupId>org.gvsig</groupId>
32
                <artifactId>org.gvsig.core.maven.dependencies</artifactId>
33
                <version>2.0.1-SNAPSHOT</version>
34
                <type>pom</type>
35
                <scope>import</scope>
36
            </dependency>
37
        </dependencies>
38
    </dependencyManagement>
39
    <repositories>
40
        <repository>
41
            <id>gvsig-public-http-repository</id>
42
            <name>gvSIG maven public HTTP repository</name>
43
            <url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository</url>
44
            <releases>
45
                <enabled>true</enabled>
46
                <updatePolicy>daily</updatePolicy>
47
                <checksumPolicy>warn</checksumPolicy>
48
            </releases>
49
            <snapshots>
50
                <enabled>true</enabled>
51
                <updatePolicy>daily</updatePolicy>
52
                <checksumPolicy>warn</checksumPolicy>
53
            </snapshots>
54
        </repository>
55
    </repositories>
56
    <profiles>
57
        <profile>
58
            <id>gvsig-install</id>
59
            <activation>
60
                <activeByDefault>true</activeByDefault>
61
            </activation>
62
            <properties>
63
                <!-- gvSIG installation folder -->
64
                <gvsig.install.dir>${basedir}/../build/product</gvsig.install.dir>
65
            </properties>
66
        </profile>
67
        <profile>
68
            <id>eclipse-project</id>
69
            <build>
70
                <plugins>
71
                    <plugin>
72
                        <artifactId>maven-antrun-plugin</artifactId>
73
                        <configuration>
74
                            <tasks>
75
                                <ant antfile="${build-dir}/ant-tasks/eclipse-tasks.xml"
76
                                    target="eclipse.eclipse" />
77
                            </tasks>
78
                        </configuration>
79
                    </plugin>
80
                </plugins>
81
            </build>
82
        </profile>
83
    </profiles>
84
</project>