Statistics
| Revision:

gvsig-raster / org.gvsig.raster.georeferencing / trunk / org.gvsig.raster.georeferencing / org.gvsig.raster.georeferencing.lib / org.gvsig.raster.georeferencing.lib.api / pom.xml @ 1223

History | View | Annotate | Download (1.46 KB)

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