Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.compat.cdc / org.gvsig.compat / org.gvsig.compat.api / pom.xml @ 43830

History | View | Annotate | Download (1.46 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.compat.api</artifactId>
7
    <packaging>jar</packaging>    
8
    <name>${project.artifactId}</name>
9
    <parent>
10
        <groupId>org.gvsig</groupId>
11
        <artifactId>org.gvsig.compat</artifactId>
12
        <version>3.0.0-SNAPSHOT</version>
13
    </parent>
14
  
15
    <build>
16
        <plugins>
17
            <plugin>
18
                <groupId>org.apache.maven.plugins</groupId>
19
                <artifactId>maven-jar-plugin</artifactId>
20
                <configuration>
21
                    <includes>
22
                        <include>**</include>
23
                    </includes>
24
                </configuration>
25
            </plugin>
26
        </plugins>
27
    </build>
28

    
29
    <dependencies>
30
        <dependency>
31
            <groupId>org.gvsig</groupId>
32
            <artifactId>org.gvsig.tools.lib</artifactId>
33
            <scope>compile</scope>
34
        </dependency>
35
        <dependency>
36
            <groupId>org.slf4j</groupId>
37
            <artifactId>slf4j-log4j12</artifactId>
38
            <scope>runtime</scope>
39
        </dependency>
40
    </dependencies>
41

    
42
    <description>This library contains the API definition of the library for compatibility with java 1.4 in JVM CDC.</description>
43
</project>