Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / extAnimationGUI / pom.xml @ 28239

History | View | Annotate | Download (4.64 KB)

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
        <modelVersion>4.0.0</modelVersion>
4
        <groupId>org.gvsig</groupId>
5
        <artifactId>extAnimationGUI</artifactId>
6
        <packaging>jar</packaging>
7
        <version>1.1-SNAPSHOT</version>
8
        <name>extAnimationGUI</name>
9
        <url>http://gvsig.org</url>
10
        <description> This is the extension that contains all the GUI part for
11
                the Animation extension of GvSIG</description>
12
        <parent>
13
                <groupId>org.gvsig</groupId>
14
                <artifactId>gvsig-extension-base-pom
15
                </artifactId>
16
                <version>1.9-SNAPSHOT</version>
17
        </parent>
18
        <dependencies>
19
                <dependency>
20
                        <groupId>org.gvsig</groupId>
21
                        <artifactId>ext3Dgui</artifactId>
22
                        <version>1.1-SNAPSHOT</version>
23
                </dependency>
24
                <dependency>
25
                        <groupId>org.gvsig</groupId>
26
                        <artifactId>libAnimation3D</artifactId>
27
                        <version>1.1-SNAPSHOT</version>
28
                </dependency>
29
                <dependency>
30
                        <groupId>org.gvsig</groupId>
31
                        <artifactId>libAnimation2D</artifactId>
32
                        <version>1.1-SNAPSHOT</version>
33
                </dependency>
34
                <dependency>
35
                        <groupId>org.gvsig</groupId>
36
                        <artifactId>libAnimationCommon</artifactId>
37
                        <version>1.1-SNAPSHOT</version>
38
                </dependency>
39
        </dependencies>
40
        <properties>
41
                <extension-appgvsig-lib-dir> ${extension-dir}/com.iver.cit.gvsig/lib/
42
                </extension-appgvsig-lib-dir>
43
                <build-dir>${basedir}/../build</build-dir>
44
                <extension-distribution> gvSIG/extensiones/org.gvsig.extAnimationGUI/
45
                </extension-distribution>
46
                <gvsig-extension-distribution> gvSIG/extensiones/com.iver.cit.gvsig/
47
                </gvsig-extension-distribution>
48
                
49
                        <!-- Path to the descriptor for win32 -->
50
                <distribution-win32-descriptor>
51
                        /distribution/win-distribution/distribution-win32.xml
52
                </distribution-win32-descriptor>
53
                <!-- Path to the descriptor for win32 sources -->
54
                <distribution-win32-descriptor-source></distribution-win32-descriptor-source>
55

    
56
                <!-- Path to the descriptor for linux32  -->
57
                <distribution-linux32-descriptor>
58
                        /distribution/linux-distribution/distribution-linux.xml
59
                </distribution-linux32-descriptor>
60
                <!-- Path to the descriptor for linux32 sources -->
61
                <distribution-linux32-descriptor-source></distribution-linux32-descriptor-source>
62

    
63
                <!-- Path to the descriptor for mac -->
64
                <distribution-mac-descriptor> /distribution/distribution-mac.xml
65
                </distribution-mac-descriptor>
66
                <!-- Path to the descriptor for mac sources-->
67
                <distribution-mac-descriptor-source></distribution-mac-descriptor-source>
68

    
69
                <!-- Path to the output directory for the distribution -->
70
                <distribution-output-directory> ./distribution/
71
                </distribution-output-directory>
72
                <!-- Final name of the output directory for the distribution -->
73
                <distribution-final-name>extAnimation
74
                </distribution-final-name>
75
                
76
                
77
                
78
                <!-- Path to the file descriptor to generate the extension-->
79
                <extension-distribution-file>distribution/extension-distribution.xml
80
                </extension-distribution-file>
81
                <!-- Final name of the output directory for the distribution -->
82
                <distribution-final-name>extAnimationGUI
83
                </distribution-final-name>
84
                <application-name>Extension-Animation-GUI
85
                </application-name>
86
        </properties>
87
        <build>
88
                <sourceDirectory>src</sourceDirectory>
89
                <testSourceDirectory>test</testSourceDirectory>
90
                <plugins>
91
                        <plugin>
92
                                <artifactId>maven-clean-plugin</artifactId>
93
                                <configuration>
94
                                        <filesets>
95
                                                <fileset>
96
                                                        <directory>${extension-dir}/${plugin-name}</directory>
97
                                                        <includes>
98
                                                                <include>**</include>
99
                                                        </includes>
100
                                                </fileset>
101
                                                <fileset>
102
                                                        <directory>${gvsig-extension-distribution}/lib</directory>
103
                                                        <includes>
104
                                                                <include>*libAnimation*</include>
105
                                                        </includes>
106
                                                </fileset>
107
                                        </filesets>
108
                                </configuration>
109
                        </plugin>
110
                </plugins>
111
        </build>
112
        <profiles>
113
                <profile>
114
                        <id>generate-installers</id>
115
                        <activation>
116
                                <property>
117
                                        <name>generate-install</name>
118
                                </property>
119
                        </activation>
120
                        <build>
121
                                <plugins>
122
                                        <plugin>
123
                                                <artifactId>maven-antrun-plugin</artifactId>
124
                                                <executions>
125
                                                        <execution>
126
                                                                <id>generate-install</id>
127
                                                                <phase>install</phase>
128
                                                                <configuration>
129
                                                                        <tasks>
130
                                                                                <property name="base-dir" value="${basedir}" />
131
                                                                                <ant antfile="${basedir}/distribution/build.xml"
132
                                                                                        inheritRefs="true" />
133
                                                                        </tasks>
134
                                                                </configuration>
135
                                                                <goals>
136
                                                                        <goal>run</goal>
137
                                                                </goals>
138
                                                        </execution>
139
                                                </executions>
140
                                        </plugin>
141
                                </plugins>
142
                        </build>
143
                </profile>
144
        </profiles>
145
</project>