Statistics
| Revision:

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

History | View | Annotate | Download (2.73 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.18-SNAPSHOT</version>
15
    </parent>
16
    <dependencies>
17
        <dependency>
18
            <groupId>easymock</groupId>
19
            <artifactId>easymock</artifactId>
20
            <scope>test</scope>
21
        </dependency>
22
        <dependency>
23
            <groupId>net.sf.kxml</groupId>
24
            <artifactId>kxml2</artifactId>
25
        </dependency>
26
    </dependencies>
27
    <build>
28
        <plugins>
29
            <plugin>
30
                <groupId>org.apache.maven.plugins</groupId>
31
                <artifactId>maven-compiler-plugin</artifactId>
32
                <configuration>
33
                    <source>1.4</source>
34
                    <target>1.4</target>
35
                </configuration>
36
            </plugin>
37
            <plugin>
38
                <groupId>org.apache.maven.plugins</groupId>
39
                <artifactId>maven-jar-plugin</artifactId>
40
                <configuration>
41
                </configuration>
42
                <executions>
43
                    <!-- Generates a jar file only with the test classes -->
44
                    <execution>
45
                        <goals>
46
                            <goal>test-jar</goal>
47
                        </goals>
48
                    </execution>
49
                </executions>
50
            </plugin>
51
            <plugin>
52
                <groupId>org.codehaus.mojo</groupId>
53
                <artifactId>animal-sniffer-maven-plugin</artifactId>
54
                <executions>
55
                    <execution>
56
                        <id>check-java-api</id>
57
                        <phase>test</phase>
58
                        <goals>
59
                            <goal>check</goal>
60
                        </goals>
61
                        <configuration>
62
                            <signature>
63
                                <groupId>org.codehaus.mojo.signature</groupId>
64
                                <artifactId>java14</artifactId>
65
                                <version>1.0</version>
66
                            </signature>
67
                        </configuration>
68
                    </execution>
69
                </executions>
70
            </plugin>
71
        </plugins>
72
    </build>
73
</project>