Statistics
| Revision:

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

History | View | Annotate | Download (2.23 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.361</version>
15
    </parent>
16
    <dependencies>
17
        <dependency>
18
            <groupId>org.glassfish</groupId>
19
            <artifactId>javax.json</artifactId>
20
            <scope>compile</scope>
21
        </dependency>
22

    
23
        <dependency>
24
            <groupId>org.apache.commons</groupId>
25
            <artifactId>commons-lang3</artifactId>
26
            <scope>compile</scope>
27
        </dependency>
28

    
29
        <dependency>
30
            <groupId>easymock</groupId>
31
            <artifactId>easymock</artifactId>
32
            <scope>test</scope>
33
        </dependency>
34
        <dependency>
35
            <groupId>net.sf.kxml</groupId>
36
            <artifactId>kxml2</artifactId>
37
        </dependency>
38
        <dependency>
39
            <groupId>commons-io</groupId>
40
            <artifactId>commons-io</artifactId>
41
        </dependency>
42
        <dependency>
43
            <groupId>commons-codec</groupId>
44
            <artifactId>commons-codec</artifactId>
45
            <scope>compile</scope>
46
        </dependency>
47
    </dependencies>
48
    <build>
49
        <plugins>
50

    
51
            <plugin>
52
                <groupId>org.apache.maven.plugins</groupId>
53
                <artifactId>maven-jar-plugin</artifactId>
54
                <configuration>
55
                </configuration>
56
                <executions>
57
                    <!-- Generates a jar file only with the test classes -->
58
                    <execution>
59
                        <goals>
60
                            <goal>test-jar</goal>
61
                        </goals>
62
                    </execution>
63
                </executions>
64
            </plugin>
65
        </plugins>
66
    </build>
67
</project>