Statistics
| Revision:

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

History | View | Annotate | Download (1.92 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-library-base-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>gvsig-basepoms</artifactId>
16
                <version>2.0-SNAPSHOT</version>
17
        </parent>
18
        <description>
19
                Base POM for all GvSIG libraries projects. This pom knows how to
20
                build and made an libraries for GvSIG. The property
21
                "gvsig-path" must be set up correctly.
22
        </description>
23
        <properties>
24
                <native-classifier>linux-Ubuntu-9.10-gcc4-i386-dynamic</native-classifier>
25
        </properties>
26
        <build>
27
                <plugins>
28
                        <plugin>
29
                                <artifactId>maven-clean-plugin</artifactId>
30
                                <configuration>
31
                                        <filesets>
32
                                                <fileset>
33
                                                        <directory>${user.home}/.depman/</directory>
34
                                                        <includes>
35
                                                                <include>**</include>
36
                                                        </includes>
37
                                                </fileset>
38
                                        </filesets>
39
                                </configuration>
40
                        </plugin>
41
                        <plugin>
42
                                <groupId>org.apache.maven.plugins</groupId>
43
                                <artifactId>maven-dependency-plugin</artifactId>
44
                                <executions>
45
                                        <execution>
46
                                                <id>unpack-dependencies</id>
47
                                                <phase>package</phase>
48
                                                <goals>
49
                                                        <goal>unpack-dependencies</goal>
50
                                                </goals>
51
                                                <configuration>
52
                                                        <includeTypes>tar.gz</includeTypes>
53
                                                        <outputDirectory>${user.home}/.depman</outputDirectory>
54
                                                        <overWriteReleases>true</overWriteReleases>
55
                                                        <overWriteSnapshots>true</overWriteSnapshots>
56
                                                </configuration>
57
                                        </execution>
58
                                </executions>
59
                        </plugin>
60
                </plugins>
61
        </build>
62
        <modules>
63
                <module>../libraries-jni-pom</module>
64
        </modules>
65
</project>