Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.library / org.gvsig.temporarystorage / org.gvsig.temporarystorage.lib / org.gvsig.temporarystorage.lib.api / pom.xml @ 43830

History | View | Annotate | Download (1.35 KB)

1
<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/xsd/maven-4.0.0.xsd">
2
    <modelVersion>4.0.0</modelVersion>
3
    <groupId>org.gvsig</groupId>
4
    <artifactId>org.gvsig.temporarystorage.lib.api</artifactId>
5
    <name>${project.artifactId}</name>
6
    <parent>
7
        <groupId>org.gvsig</groupId>
8
        <artifactId>org.gvsig.temporarystorage.lib</artifactId>
9
        <version>3.0.0-SNAPSHOT</version>
10
    </parent>
11

    
12
    <build>
13
        <plugins>
14
            <plugin>
15
                <groupId>org.apache.maven.plugins</groupId>
16
                <artifactId>maven-jar-plugin</artifactId>
17
                <configuration>
18
                </configuration>
19
                <executions>
20
                    <!-- Generates a jar file only with the test classes -->
21
                    <execution>
22
                        <goals>
23
                            <goal>test-jar</goal>
24
                        </goals>
25
                    </execution>
26
                </executions>
27
            </plugin>
28
        </plugins>
29
    </build>
30

    
31
    <dependencies>
32
        <dependency>
33
            <groupId>org.gvsig</groupId>
34
            <artifactId>org.gvsig.tools.lib</artifactId>
35
            <scope>compile</scope>
36
        </dependency>
37

    
38
    </dependencies>
39
</project>