Statistics
| Revision:

gvsig-raster / org.gvsig.raster / trunk / org.gvsig.raster / org.gvsig.raster.app / org.gvsig.raster.app.mainplugin / pom.xml @ 22306

History | View | Annotate | Download (2.12 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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
    <artifactId>org.gvsig.raster.app.mainplugin</artifactId>
5
    <packaging>jar</packaging>
6
          <name>${project.artifactId} (old)</name>
7

    
8
    <parent>
9
        <groupId>org.gvsig</groupId>
10
        <artifactId>org.gvsig.raster.app</artifactId>
11
        <version>2.2.266-SNAPSHOT</version>
12
    </parent>
13

    
14
    <dependencies>
15
        <dependency>
16
            <groupId>org.gvsig</groupId>
17
            <artifactId>org.gvsig.raster.app.common</artifactId>
18
            <type>zip</type>
19
        </dependency>
20

    
21
    </dependencies>
22

    
23
    <build>
24
        <plugins>
25

    
26
            <plugin>
27
                <groupId>org.apache.maven.plugins</groupId>
28
                <artifactId>maven-dependency-plugin</artifactId>
29
                <executions>
30
                    <execution>
31
                        <id>unpack</id>
32
                        <phase>process-sources</phase>
33
                        <goals>
34
                            <goal>unpack</goal>
35
                        </goals>
36
                        <configuration>
37
                            <artifactItems>
38
                                <artifactItem>
39
                                    <groupId>org.gvsig</groupId>
40
                                    <artifactId>org.gvsig.raster.app.common</artifactId>
41
                                    <type>zip</type>
42
                                    <overWrite>true</overWrite>
43
                                    <outputDirectory>target</outputDirectory>
44
                                </artifactItem>
45
                            </artifactItems>
46
                        </configuration>
47
                    </execution>
48
                </executions>
49
            </plugin>
50

    
51

    
52
        </plugins>
53
    </build>
54

    
55
    <properties>
56
        <gvsig.install.plugin>true</gvsig.install.plugin>
57
        <gvsig.package.info.name>Raster base support</gvsig.package.info.name>    
58
    </properties>
59

    
60
</project>
61