Statistics
| Revision:

root / trunk / extensions / extAnimation3D / pom.xml @ 20279

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>extAnimation3D</artifactId>
7
        <packaging>jar</packaging>
8
        <version>1.0-SNAPSHOT</version>
9
        <name>extAnimation3D</name>
10
        <url>http://maven.apache.org</url>
11

    
12
        <parent>
13
                <groupId>org.gvsig</groupId>
14
                <artifactId>gvsig-extension-base-pom</artifactId>
15
                <version>1.0-SNAPSHOT</version>
16
        </parent>
17

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