Statistics
| Revision:

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

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