Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extAnimation2D / pom.xml @ 19091

History | View | Annotate | Download (2.45 KB)

1 18793 jcampos
<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>com.iver.cit.gvsig.animation</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 18843 jcampos
12
        <parent>
13
                <groupId>com.iver.cit.gvsig</groupId>
14
                <artifactId>animation</artifactId>
15
                <version>1.0-SNAPSHOT</version>
16
                <!-- Esto se puede usar tambien una URL -->
17
                <relativePath>../binaries/maven/pom.xml</relativePath>
18
        </parent>
19
20 18793 jcampos
        <dependencies>
21
                <dependency>
22
                        <groupId>com.iver.cit.gvsig.animation</groupId>
23
                        <artifactId>libAnimation2D</artifactId>
24
                        <version>1.0-SNAPSHOT</version>
25
                </dependency>
26
        </dependencies>
27 18843 jcampos
        <properties>
28
                <config>config</config>
29
                <plugin-name>
30
                        ${project.groupId}.${project.artifactId}
31
                </plugin-name>
32
                <extension-dir>../_fwAndami/gvSIG/extensiones</extension-dir>
33
                <temporaly-build>
34
                        ${project.build.directory}/${plugin-name}
35
                </temporaly-build>
36
                <extension-lib-dir>
37
                        ${extension-dir}/${plugin-name}/lib
38
                </extension-lib-dir>
39
        </properties>
40
        <build>
41
                <plugins>
42
                        <plugin>
43
                                <groupId>org.apache.maven.plugins</groupId>
44
                                <artifactId>maven-compiler-plugin</artifactId>
45
                                <configuration>
46
                                        <source>1.5</source>
47
                                        <target>1.5</target>
48
                                </configuration>
49
                        </plugin>
50
                        <plugin>
51
                                <groupId>org.apache.maven.plugins</groupId>
52
                                <artifactId>maven-dependency-plugin</artifactId>
53
                                <executions>
54
                                        <execution>
55
                                                <id>copy</id>
56
                                                <phase>package</phase>
57
                                                <goals>
58
                                                        <goal>copy</goal>
59
                                                </goals>
60
                                                <configuration>
61
                                                        <artifactItems>
62
                                                                <artifactItem>
63
                                                                        <groupId>
64
                                                                                com.iver.cit.gvsig.animation
65
                                                                        </groupId>
66
                                                                        <artifactId>
67
                                                                                libAnimation2D
68
                                                                        </artifactId>
69
                                                                        <version>1.0-SNAPSHOT</version>
70
                                                                        <type>jar</type>
71
                                                                        <overWrite>false</overWrite>
72
                                                                </artifactItem>
73
                                                        </artifactItems>
74
                                                        <outputDirectory>
75
                                                                ${extension-lib-dir}
76
                                                        </outputDirectory>
77
                                                        <overWriteReleases>false</overWriteReleases>
78
                                                        <overWriteSnapshots>
79
                                                                true
80
                                                        </overWriteSnapshots>
81
                                                </configuration>
82
                                        </execution>
83
                                </executions>
84
                        </plugin>
85
                </plugins>
86
        </build>
87 18793 jcampos
</project>