Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.lib / pom.xml @ 1850

History | View | Annotate | Download (1.9 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<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">
4

    
5
    <modelVersion>4.0.0</modelVersion>
6
    <artifactId>org.gvsig.tools.lib</artifactId>
7
    <packaging>jar</packaging>
8
    <name>org.gvsig.tools.lib</name>
9
    <description>Tools related to application framework architecture
10
        and implementations of design patterns</description>
11
    <parent>
12
        <groupId>org.gvsig</groupId>
13
        <artifactId>org.gvsig.tools</artifactId>
14
        <version>3.0.182-SNAPSHOT</version>
15
    </parent>
16
    <dependencies>
17
        <dependency>
18
            <groupId>org.apache.commons</groupId>
19
            <artifactId>commons-lang3</artifactId>
20
            <scope>compile</scope>
21
        </dependency>
22

    
23
        <dependency>
24
            <groupId>easymock</groupId>
25
            <artifactId>easymock</artifactId>
26
            <scope>test</scope>
27
        </dependency>
28
        <dependency>
29
            <groupId>net.sf.kxml</groupId>
30
            <artifactId>kxml2</artifactId>
31
        </dependency>
32
        <dependency>
33
            <groupId>commons-io</groupId>
34
            <artifactId>commons-io</artifactId>
35
        </dependency>
36
    </dependencies>
37
    <build>
38
        <plugins>
39

    
40
            <plugin>
41
                <groupId>org.apache.maven.plugins</groupId>
42
                <artifactId>maven-jar-plugin</artifactId>
43
                <configuration>
44
                </configuration>
45
                <executions>
46
                    <!-- Generates a jar file only with the test classes -->
47
                    <execution>
48
                        <goals>
49
                            <goal>test-jar</goal>
50
                        </goals>
51
                    </execution>
52
                </executions>
53
            </plugin>
54
        </plugins>
55
    </build>
56
</project>