Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / extAnimation2D / pom.xml @ 26877

History | View | Annotate | Download (2.08 KB)

1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
        <modelVersion>4.0.0</modelVersion>
5
        <groupId>org.gvsig</groupId>
6
        <artifactId>extAnimation2D</artifactId>
7
        <packaging>jar</packaging>
8
        <version>1.0-SNAPSHOT</version>
9
        <name>extAnimation2D</name>
10
        <url>http://maven.apache.org</url>
11
        <parent>
12
                <groupId>org.gvsig</groupId>
13
                <artifactId>gvsig-extension-base-pom</artifactId>
14
                <version>1.0-SNAPSHOT</version>
15
        </parent>
16

    
17
        <dependencies>
18
                <dependency>
19
                        <groupId>org.gvsig</groupId>
20
                        <artifactId>libAnimation2D</artifactId>
21
                        <version>1.0-SNAPSHOT</version>
22
                </dependency>
23
        </dependencies>
24
        <properties>
25
                <extension-appgvsig-lib-dir>
26
                        ${extension-dir}/com.iver.cit.gvsig/lib/
27
                </extension-appgvsig-lib-dir>
28
                <build-dir>${basedir}/../build</build-dir>
29
        </properties>
30
        <build>
31
                <plugins>
32
                        <plugin>
33
                                <groupId>org.apache.maven.plugins</groupId>
34
                                <artifactId>maven-compiler-plugin</artifactId>
35
                                <configuration>
36
                                        <source>1.5</source>
37
                                        <target>1.5</target>
38
                                </configuration>
39
                        </plugin>
40
                        <plugin>
41
                                <groupId>org.apache.maven.plugins</groupId>
42
                                <artifactId>maven-dependency-plugin</artifactId>
43
                                <executions>
44
                                        <execution>
45
                                                <id>copy</id>
46
                                                <phase>install</phase>
47
                                                <goals>
48
                                                        <goal>copy</goal>
49
                                                </goals>
50
                                                <configuration>
51
                                                        <artifactItems>
52
                                                                <artifactItem>
53
                                                                        <groupId>org.gvsig</groupId>
54
                                                                        <artifactId>
55
                                                                                libAnimation2D
56
                                                                        </artifactId>
57
                                                                        <version>1.0-SNAPSHOT</version>
58
                                                                        <type>jar</type>
59
                                                                        <overWrite>false</overWrite>
60
                                                                </artifactItem>
61
                                                        </artifactItems>
62
                                                        <outputDirectory>
63
                                                                ${extension-lib-dir}
64
                                                        </outputDirectory>
65
                                                        <overWriteReleases>false</overWriteReleases>
66
                                                        <overWriteSnapshots>
67
                                                                true
68
                                                        </overWriteSnapshots>
69
                                                </configuration>
70
                                        </execution>
71
                                </executions>
72
                        </plugin>
73
                </plugins>
74
        </build>
75
</project>