Statistics
| Revision:

root / trunk / extensions / extAnimationGUI / pom.xml @ 20948

History | View | Annotate | Download (2.42 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>extAnimationGUI</artifactId>
7
        <packaging>jar</packaging>
8
        <version>1.0-SNAPSHOT</version>
9
        <name>extAnimationGUI</name>
10
        <url>http://gvsig.org</url>
11
        <description>
12
                This is the extension that contains all the GUI part for the
13
                Animation extension of GvSIG
14
        </description>
15
        <parent>
16
                <groupId>org.gvsig</groupId>
17
                <artifactId>gvsig-extension-base-pom</artifactId>
18
                <version>1.0-SNAPSHOT</version>
19
        </parent>
20
        <dependencies>
21
                <dependency>
22
                        <groupId>org.gvsig</groupId>
23
                        <artifactId>libAnimation3D</artifactId>
24
                        <version>1.0-SNAPSHOT</version>
25
                </dependency>
26
                <dependency>
27
                        <groupId>org.gvsig</groupId>
28
                        <artifactId>libAnimation2D</artifactId>
29
                        <version>1.0-SNAPSHOT</version>
30
                </dependency>
31
                <dependency>
32
                        <groupId>org.gvsig</groupId>
33
                        <artifactId>libAnimationCommon</artifactId>
34
                        <version>1.0-SNAPSHOT</version>
35
                </dependency>
36
        </dependencies>
37
        <properties>
38
                <extension-appgvsig-lib-dir>
39
                        ${extension-dir}/com.iver.cit.gvsig/lib/
40
                </extension-appgvsig-lib-dir>
41
                <build-dir>${basedir}/../build</build-dir>
42
        </properties>
43
        <build>
44
                <sourceDirectory>src</sourceDirectory>
45
                <testSourceDirectory>test</testSourceDirectory>
46
                <plugins>
47
                        <plugin>
48
                                <groupId>org.apache.maven.plugins</groupId>
49
                                <artifactId>maven-dependency-plugin</artifactId>
50
                                <executions>
51
                                        <execution>
52
                                                <id>copy-gvsig</id>
53
                                                <phase>install</phase>
54
                                                <goals>
55
                                                        <goal>copy</goal>
56
                                                </goals>
57
                                                <configuration>
58
                                                        <artifactItems>
59
                                                                <artifactItem>
60
                                                                        <groupId>org.gvsig</groupId>
61
                                                                        <artifactId>
62
                                                                                libAnimation
63
                                                                        </artifactId>
64
                                                                        <version>1.0-SNAPSHOT</version>
65
                                                                        <type>jar</type>
66
                                                                        <overWrite>true</overWrite>
67
                                                                </artifactItem>
68
                                                        </artifactItems>
69
                                                        <outputDirectory>
70
                                                                ${extension-appgvsig-lib-dir}
71
                                                        </outputDirectory>
72
                                                        <overWriteReleases>false</overWriteReleases>
73
                                                        <overWriteSnapshots>
74
                                                                true
75
                                                        </overWriteSnapshots>
76
                                                        <excludeTransitive>false</excludeTransitive>
77
                                                </configuration>
78
                                        </execution>
79
                                </executions>
80
                        </plugin>
81
                </plugins>
82
        </build>
83
</project>