Statistics
| Revision:

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

History | View | Annotate | Download (3.31 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-library-pom</artifactId>
10
        <packaging>pom</packaging>
11
        <version>2.0-SNAPSHOT</version>
12
        <name>library-base-pom</name>
13
        <parent>
14
                <groupId>org.gvsig</groupId>
15
                <artifactId>org.gvsig.maven.base.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
        <repositories>
29
                <repository>
30
                        <id>gvsig-public-http-repository</id>
31
                        <name>gvSIG maven public HTTP repository</name>
32
                        <url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository</url>
33
                        <releases>
34
                                <enabled>true</enabled>
35
                                <updatePolicy>daily</updatePolicy>
36
                                <checksumPolicy>warn</checksumPolicy>
37
                        </releases>
38
                        <snapshots>
39
                                <enabled>true</enabled>
40
                                <updatePolicy>daily</updatePolicy>
41
                                <checksumPolicy>warn</checksumPolicy>
42
                        </snapshots>
43
                </repository>
44
        </repositories>
45
        <dependencyManagement>
46
                <dependencies>
47
                        <dependency>
48
                                <groupId>org.gvsig</groupId>
49
                                <artifactId>org.gvsig.core.maven.dependencies</artifactId>
50
                                <version>2.0.1-SNAPSHOT</version>
51
                                <type>pom</type>
52
                                <scope>import</scope>
53
                        </dependency>
54
                </dependencies>
55
        </dependencyManagement>
56
        <build>
57
                <plugins>
58
                        <plugin>
59
                                <artifactId>maven-clean-plugin</artifactId>
60
                                <configuration>
61
                                        <filesets>
62
                                                <fileset>
63
                                                        <directory>${user.home}/.depman/</directory>
64
                                                        <includes>
65
                                                                <include>**</include>
66
                                                        </includes>
67
                                                </fileset>
68
                                        </filesets>
69
                                        <followSymLinks>true</followSymLinks>
70
                                </configuration>
71
                        </plugin>
72
                </plugins>
73
        </build>
74
        <profiles>
75
                <profile>
76
                        <id>eclipse-project</id>
77
                        <build>
78
                                <plugins>
79
                                        <plugin>
80
                                                <artifactId>maven-antrun-plugin</artifactId>
81
                                                <configuration>
82
                                                        <tasks>
83
                                                                <ant antfile="${build-dir}/ant-tasks/eclipse-tasks.xml" target="eclipse.eclipse" />
84
                                                        </tasks>
85
                                                </configuration>
86
                                                <dependencies>
87
                                                        <dependency>
88
                                                                <groupId>org.apache.ant</groupId>
89
                                                                <artifactId>ant-trax</artifactId>
90
                                                                <version>1.7.1</version>
91
                                                        </dependency>
92
                                                        <dependency>
93
                                                                <groupId>xalan</groupId>
94
                                                                <artifactId>xalan</artifactId>
95
                                                                <version>2.6.0</version>
96
                                                        </dependency>
97
                                                </dependencies>
98
                                        </plugin>
99
                                </plugins>
100
                        </build>
101
                </profile>
102
                <profile>
103
                        <id>gvsig-install</id>
104
                        <activation>
105
                                <activeByDefault>true</activeByDefault>
106
                        </activation>
107
                        <properties>
108
                                <!--  gvSIG installation folder -->
109
                                <gvsig.install.dir>${basedir}/../build/product</gvsig.install.dir>
110
                        </properties>
111
                </profile>
112
        </profiles>
113
</project>