Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extAnimationCommon / pom.xml @ 21748

History | View | Annotate | Download (3.29 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>extAnimationCommon</artifactId>
7
        <packaging>jar</packaging>
8
        <version>1.0-SNAPSHOT</version>
9
        <name>extAnimationCommon</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>libAnimationCommon</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
                <extension-distribution>
31
                        gvSIG/extensiones/org.gvsig.extAnimationCommon/
32
                </extension-distribution>
33
                <gvsig-extension-distribution>
34
                        gvSIG/extensiones/com.iver.cit.gvsig/
35
                </gvsig-extension-distribution>
36

    
37
                <!-- Path to the descriptor for win32 -->
38
                <distribution-win32-descriptor>
39
                        /distribution/win-distribution/distribution-win32.xml
40
                </distribution-win32-descriptor>
41
                <!-- Path to the descriptor for win32 sources -->
42
                <distribution-win32-descriptor-source></distribution-win32-descriptor-source>
43

    
44
                <!-- Path to the descriptor for linux32  -->
45
                <distribution-linux32-descriptor>
46
                        /distribution/linux-distribution/distribution-linux.xml
47
                </distribution-linux32-descriptor>
48
                <!-- Path to the descriptor for linux32 sources -->
49
                <distribution-linux32-descriptor-source></distribution-linux32-descriptor-source>
50

    
51
                <!-- Path to the descriptor for mac -->
52
                <distribution-mac-descriptor>
53
                        /distribution/distribution-mac.xml
54
                </distribution-mac-descriptor>
55
                <!-- Path to the descriptor for mac sources-->
56
                <distribution-mac-descriptor-source></distribution-mac-descriptor-source>
57

    
58
                <!-- Path to the output directory for the distribution -->
59
                <distribution-output-directory>
60
                        ../extAnimationGUI/distribution/
61
                </distribution-output-directory>
62
                <!-- Final name of the output directory for the distribution -->
63
                <distribution-final-name>extAnimation</distribution-final-name>
64

    
65
        </properties>
66
        <build>
67
                <plugins>
68
                        <plugin>
69
                                <groupId>org.apache.maven.plugins</groupId>
70
                                <artifactId>maven-dependency-plugin</artifactId>
71
                                <executions>
72
                                        <execution>
73
                                                <id>copy</id>
74
                                                <phase>install</phase>
75
                                                <goals>
76
                                                        <goal>copy</goal>
77
                                                </goals>
78
                                                <configuration>
79
                                                        <artifactItems>
80
                                                                <artifactItem>
81
                                                                        <groupId>org.gvsig</groupId>
82
                                                                        <artifactId>
83
                                                                                libAnimationCommon
84
                                                                        </artifactId>
85
                                                                        <version>1.0-SNAPSHOT</version>
86
                                                                        <type>jar</type>
87
                                                                        <overWrite>false</overWrite>
88
                                                                </artifactItem>
89
                                                        </artifactItems>
90
                                                        <outputDirectory>
91
                                                                ${extension-lib-dir}
92
                                                        </outputDirectory>
93
                                                        <overWriteReleases>false</overWriteReleases>
94
                                                        <overWriteSnapshots>
95
                                                                true
96
                                                        </overWriteSnapshots>
97
                                                </configuration>
98
                                        </execution>
99
                                </executions>
100
                        </plugin>
101
                </plugins>
102
        </build>
103
</project>