Statistics
| Revision:

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

History | View | Annotate | Download (1.64 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 Animation
13
                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
                <config>config</config>
39
                <plugin-name>
40
                        ${project.groupId}.${project.artifactId}
41
                </plugin-name>
42
                <temporaly-build>
43
                        ${project.build.directory}/${plugin-name}
44
                </temporaly-build>
45
                <extension-lib-dir>
46
                        ${extension-dir}/${plugin-name}/lib
47
                </extension-lib-dir>
48
                <build-dir>${basedir}/../build</build-dir>
49
        </properties>
50
        <build>
51
                <sourceDirectory>src</sourceDirectory>
52
                <testSourceDirectory>test</testSourceDirectory>
53
        </build>
54

    
55
</project>