Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / build / libraries-pom / pom.xml @ 40303

History | View | Annotate | Download (2.42 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
        <artifactId>gvsig-base-library-pom</artifactId>
9
        <packaging>pom</packaging>
10
        <version>2.0.1</version>
11
        <name>library-base-pom</name>
12
        <parent>
13
                <groupId>org.gvsig</groupId>
14
                <artifactId>org.gvsig.maven.base.pom</artifactId>
15
                <version>1.0.9</version>
16
        </parent>
17
    <scm>
18
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep</connection>
19
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep</developerConnection>
20
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop/repository/show/branches/v2_0_0_prep</url>
21
    </scm>
22
        <repositories>
23
                <repository>
24
                        <id>gvsig-public-http-repository</id>
25
                        <name>gvSIG maven public HTTP repository</name>
26
            <url>http://devel.gvsig.org/m2repo/j2se</url>
27
                        <releases>
28
                                <enabled>true</enabled>
29
                                <updatePolicy>daily</updatePolicy>
30
                                <checksumPolicy>warn</checksumPolicy>
31
                        </releases>
32
                        <snapshots>
33
                                <enabled>true</enabled>
34
                                <updatePolicy>daily</updatePolicy>
35
                                <checksumPolicy>warn</checksumPolicy>
36
                        </snapshots>
37
                </repository>
38
        </repositories>
39
        <dependencyManagement>
40
                <dependencies>
41
                        <dependency>
42
                                <groupId>org.gvsig</groupId>
43
                                <artifactId>org.gvsig.core.maven.dependencies</artifactId>
44
                                <version>2.0.2</version>
45
                                <type>pom</type>
46
                                <scope>import</scope>
47
                        </dependency>
48
                </dependencies>
49
        </dependencyManagement>
50
        <build>
51
                <plugins>
52
                        <plugin>
53
                                <artifactId>maven-clean-plugin</artifactId>
54
                                <configuration>
55
                                        <filesets>
56
                                                <fileset>
57
                                                        <directory>${user.home}/.depman/</directory>
58
                                                        <includes>
59
                                                                <include>**</include>
60
                                                        </includes>
61
                                                </fileset>
62
                                        </filesets>
63
                                        <followSymLinks>true</followSymLinks>
64
                                </configuration>
65
                        </plugin>
66
                </plugins>
67
        </build>
68
        <profiles>
69
                <profile>
70
                        <id>gvsig-install</id>
71
                        <activation>
72
                                <activeByDefault>true</activeByDefault>
73
                        </activation>
74
                        <properties>
75
                                <!-- gvSIG installation folder -->
76
                                <gvsig.install.dir>${basedir}/../build/product</gvsig.install.dir>
77
                        </properties>
78
                </profile>
79
        </profiles>
80
</project>