Statistics
| Revision:

gvsig-raster / org.gvsig.raster.tools / trunk / templates / examples / org.gvsig.raster.roimask / org.gvsig.raster.roimask.lib / org.gvsig.raster.roimask.lib.api / pom.xml @ 1922

History | View | Annotate | Download (1.24 KB)

1 1843 nbrodin
<?xml version="1.0" encoding="ISO-8859-1"?>
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.roimask.lib.api</artifactId>
5
        <packaging>jar</packaging>
6
        <name>org.gvsig.raster.roimask.lib.api</name>
7
        <parent>
8
                <groupId>org.gvsig</groupId>
9
                <artifactId>org.gvsig.raster.roimask.lib</artifactId>
10
                <version>2.0.0-SNAPSHOT</version>
11
        </parent>
12
        <dependencies>
13
        <dependency>
14
            <groupId>org.gvsig</groupId>
15
            <artifactId>org.gvsig.compat</artifactId>
16
            <scope>compile</scope>
17
        </dependency>
18
     </dependencies>
19
        <build>
20
                <plugins>
21
                        <plugin>
22
                                <groupId>org.apache.maven.plugins</groupId>
23
                                <artifactId>maven-jar-plugin</artifactId>
24
                                <configuration>
25
                                </configuration>
26
                                <executions>
27
                                <!--
28
                                Generates a jar file only with the test classes
29
                                -->
30
                                        <execution>
31
                                                <goals>
32
                                                        <goal>test-jar</goal>
33
                                                </goals>
34
                                        </execution>
35
                                </executions>
36
                        </plugin>
37
                </plugins>
38
        </build>
39
    <properties>
40
        <build-dir>${basedir}/../../build</build-dir>
41
    </properties>
42
</project>