Statistics
| Revision:

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

History | View | Annotate | Download (2.74 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.70-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
            <plugin>
55
                <groupId>org.codehaus.mojo</groupId>
56
                <artifactId>animal-sniffer-maven-plugin</artifactId>
57
                <executions>
58
                    <execution>
59
                        <id>check-java-api</id>
60
                        <phase>test</phase>
61
                        <goals>
62
                            <goal>check</goal>
63
                        </goals>
64
                        <configuration>
65
                            <signature>
66
                                <groupId>org.codehaus.mojo.signature</groupId>
67
                                <artifactId>java15</artifactId>
68
                                <version>1.0</version>
69
                            </signature>
70
                        </configuration>
71
                    </execution>
72
                </executions>
73
            </plugin>
74
        </plugins>
75
    </build>
76
</project>