Statistics
| Revision:

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

History | View | Annotate | Download (2.06 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.251</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
    </dependencies>
43
    <build>
44
        <plugins>
45

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