Statistics
| Revision:

root / org.gvsig.proj / branches / refactor2018 / org.gvsig.proj / org.gvsig.proj.lib / pom.xml @ 856

History | View | Annotate | Download (1.4 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<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">
3

    
4
        <modelVersion>4.0.0</modelVersion>
5
        <artifactId>org.gvsig.proj.lib</artifactId>
6
        <packaging>pom</packaging>
7
        <name>${project.artifactId}</name>
8
        <parent>
9
                <groupId>org.gvsig</groupId>
10
                <artifactId>org.gvsig.proj</artifactId>
11
                <version>3.0.0-SNAPSHOT</version>
12
        </parent>
13

    
14
        <build>
15
                <plugins>
16
                        <!-- Configure as a Java 1.7 compatible project -->
17
                        <plugin>
18
                                <groupId>org.apache.maven.plugins</groupId>
19
                                <artifactId>maven-compiler-plugin</artifactId>
20
                                <configuration>
21
                                        <source>1.7</source>
22
                                        <target>1.7</target>
23
                                </configuration>
24
                        </plugin>
25
                        <plugin>
26
                                <groupId>org.codehaus.mojo</groupId>
27
                                <artifactId>animal-sniffer-maven-plugin</artifactId>
28
                                <executions>
29
                                        <execution>
30
                                                <id>check-java-api</id>
31
                                                <phase>test</phase>
32
                                                <goals>
33
                                                        <goal>check</goal>
34
                                                </goals>
35
                                                <configuration>
36
                                                        <signature>
37
                                                                <groupId>org.codehaus.mojo.signature</groupId>
38
                                                                <artifactId>java17</artifactId>
39
                                                                <version>1.0</version>
40
                                                        </signature>
41
                                                </configuration>
42
                                        </execution>
43
                                </executions>
44
                        </plugin>
45
                </plugins>
46
        </build>
47

    
48
        <modules>
49
                <module>org.gvsig.proj.lib.api</module>
50
        </modules>
51
</project>