Statistics
| Revision:

svn-gvsig-desktop / tags / v1_9_Build_1245 / extensions / extDockingSkin / pom.xml @ 33522

History | View | Annotate | Download (1.84 KB)

1 25536 jcampos
<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>extDockingSkin</artifactId>
6
        <packaging>jar</packaging>
7 27197 rgaitan
        <version>1.9-SNAPSHOT</version>
8 25536 jcampos
        <name>extDockingSkin</name>
9
        <url>http://maven.apache.org</url>
10
        <parent>
11
                <groupId>org.gvsig</groupId>
12
                <artifactId>gvsig-extension-base-pom</artifactId>
13 27197 rgaitan
                <version>1.9-SNAPSHOT</version>
14 25536 jcampos
        </parent>
15
        <dependencies>
16
                <dependency>
17
                        <groupId>org.gvsig</groupId>
18
                        <artifactId>_fwAndami</artifactId>
19
                        <version>1.9-SNAPSHOT</version>
20
                </dependency>
21
                <dependency>
22
                        <groupId>net.infonode</groupId>
23
                        <artifactId>idw</artifactId>
24
                        <version>1.5.0</version>
25
                </dependency>
26
        </dependencies>
27
        <properties>
28
                <extension-appgvsig-lib-dir> ${extension-dir}/com.iver.cit.gvsig/lib/
29
                </extension-appgvsig-lib-dir>
30
                <build-dir>${basedir}/../build</build-dir>
31
                <extension-distribution> gvSIG/extensiones/org.gvsig.extDockingSkin/
32
                </extension-distribution>
33
                <!-- Path to the file descriptor to generate the extension-->
34
                <extension-distribution-file>distribution/extension-distribution.xml
35
                </extension-distribution-file>
36
                <!-- Final name of the output directory for the distribution -->
37
                <distribution-final-name>extDocking</distribution-final-name>
38
                <application-name>DockingExtension</application-name>
39
40
        </properties>
41
        <build>
42
                <plugins>
43
                        <plugin>
44
                                <artifactId>maven-clean-plugin</artifactId>
45
                                <configuration>
46
                                        <filesets>
47
                                                <fileset>
48
                                                        <directory>
49
                                                                ${extension-dir}/${plugin-name}
50
                                                        </directory>
51
                                                        <includes>
52
                                                                <include>**</include>
53
                                                        </includes>
54
                                                </fileset>
55
                                        </filesets>
56
                                </configuration>
57
                        </plugin>
58
                </plugins>
59
        </build>
60 27197 rgaitan
</project>