Statistics
| Revision:

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

History | View | Annotate | Download (3.08 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.0-SNAPSHOT</version>
17
        </parent>
18
        <scm>
19
                <connection>
20
                        scm:svn:http://subversion.gvsig.org/gvSIG/branches/v2_0_0_prep/            
21
            </connection>
22
                <developerConnection>
23
                        scm:svn:https://gvsig.org/svn/gvSIG/branches/v2_0_0_prep/
24
            </developerConnection>
25
                <url>http://subversion.gvsig.org/viewvc/?root=gvSIG</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

    
46
        <description>
47
                Base POM for all GvSIG libraries projects. This pom knows how to
48
                build and made an libraries for GvSIG.
49
        </description>
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>eclipse-project</id>
71
                        <build>
72
                                <plugins>
73
                                        <plugin>
74
                                                <artifactId>maven-antrun-plugin</artifactId>
75
                                                <configuration>
76
                                                        <tasks>
77
                                                                <ant antfile="${build-dir}/ant-tasks/eclipse-tasks.xml"
78
                                                                        target="eclipse.eclipse"/>
79
                                                        </tasks>
80
                                                </configuration>
81
                                                <dependencies>
82
                                                        <dependency>
83
                                                                <groupId>org.apache.ant</groupId>
84
                                                                <artifactId>ant-trax</artifactId>
85
                                                                <version>1.7.1</version>
86
                                                        </dependency>
87
                                                        <dependency>
88
                                                                <groupId>xalan</groupId>
89
                                                                <artifactId>xalan</artifactId>
90
                                                                <version>2.6.0</version>
91
                                                        </dependency>
92
                                                </dependencies>
93
                                        </plugin>
94
                                </plugins>
95
                        </build>                                
96
                </profile>
97
            <profile>
98
                    <id>gvsig-install</id>
99
                    <activation>
100
                            <activeByDefault>true</activeByDefault>
101
                    </activation>
102
                    <properties>
103
                                <!--  gvSIG installation folder -->
104
                            <gvsig.install.dir>${basedir}/../build/product</gvsig.install.dir>
105
                    </properties>
106
            </profile>                
107
        </profiles>
108
</project>