Statistics
| Revision:

gvsig-raster / org.gvsig.raster.cache / trunk / org.gvsig.raster.cache / org.gvsig.raster.cache.lib.api / pom.xml @ 1542

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