Statistics
| Revision:

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

History | View | Annotate | Download (2.25 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
                <config>config</config>
27
                <plugin-name>
28
                        ${project.groupId}.${project.artifactId}
29
                </plugin-name>
30
                <temporaly-build>
31
                        ${project.build.directory}/${plugin-name}
32
                </temporaly-build>
33
                <extension-lib-dir>
34
                        ${extension-dir}/${plugin-name}/lib
35
                </extension-lib-dir>
36
                <build-dir>${basedir}/../build</build-dir>
37
        </properties>
38
        <build>
39
                <plugins>
40
                        <plugin>
41
                                <groupId>org.apache.maven.plugins</groupId>
42
                                <artifactId>maven-compiler-plugin</artifactId>
43
                                <configuration>
44
                                        <source>1.5</source>
45
                                        <target>1.5</target>
46
                                </configuration>
47
                        </plugin>
48
                        <plugin>
49
                                <groupId>org.apache.maven.plugins</groupId>
50
                                <artifactId>maven-dependency-plugin</artifactId>
51
                                <executions>
52
                                        <execution>
53
                                                <id>copy</id>
54
                                                <phase>package</phase>
55
                                                <goals>
56
                                                        <goal>copy</goal>
57
                                                </goals>
58
                                                <configuration>
59
                                                        <artifactItems>
60
                                                                <artifactItem>
61
                                                                        <groupId>org.gvsig</groupId>
62
                                                                        <artifactId>
63
                                                                                libAnimation3D
64
                                                                        </artifactId>
65
                                                                        <version>1.0-SNAPSHOT</version>
66
                                                                        <type>jar</type>
67
                                                                        <overWrite>false</overWrite>
68
                                                                </artifactItem>
69
                                                        </artifactItems>
70
                                                        <outputDirectory>
71
                                                                ${extension-lib-dir}
72
                                                        </outputDirectory>
73
                                                        <overWriteReleases>false</overWriteReleases>
74
                                                        <overWriteSnapshots>
75
                                                                true
76
                                                        </overWriteSnapshots>
77
                                                </configuration>
78
                                        </execution>
79
                                </executions>
80
                        </plugin>
81
                </plugins>
82
        </build>
83
</project>