Statistics
| Revision:

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

History | View | Annotate | Download (3.05 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.58-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
            <plugin>
40
                <groupId>org.apache.maven.plugins</groupId>
41
                <artifactId>maven-compiler-plugin</artifactId>
42
                <configuration>
43
                    <source>1.5</source>
44
                    <target>1.5</target>
45
                </configuration>
46
            </plugin>
47
            <plugin>
48
                <groupId>org.apache.maven.plugins</groupId>
49
                <artifactId>maven-jar-plugin</artifactId>
50
                <configuration>
51
                </configuration>
52
                <executions>
53
                    <!-- Generates a jar file only with the test classes -->
54
                    <execution>
55
                        <goals>
56
                            <goal>test-jar</goal>
57
                        </goals>
58
                    </execution>
59
                </executions>
60
            </plugin>
61
            <plugin>
62
                <groupId>org.codehaus.mojo</groupId>
63
                <artifactId>animal-sniffer-maven-plugin</artifactId>
64
                <executions>
65
                    <execution>
66
                        <id>check-java-api</id>
67
                        <phase>test</phase>
68
                        <goals>
69
                            <goal>check</goal>
70
                        </goals>
71
                        <configuration>
72
                            <signature>
73
                                <groupId>org.codehaus.mojo.signature</groupId>
74
                                <artifactId>java15</artifactId>
75
                                <version>1.0</version>
76
                            </signature>
77
                        </configuration>
78
                    </execution>
79
                </executions>
80
            </plugin>
81
        </plugins>
82
    </build>
83
</project>