Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2062 / libraries / libDXF / pom.xml @ 44114

History | View | Annotate | Download (1.4 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0"
3
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
        <modelVersion>4.0.0</modelVersion>
6
        <artifactId>org.gvsig.dxf</artifactId>
7
        <packaging>jar</packaging>
8
        <version>2.0-SNAPSHOT</version>
9
        <name>libDXF</name>
10
        <parent>
11
                <groupId>org.gvsig</groupId>
12
                <artifactId>gvsig-base-library-pom</artifactId>
13
                <version>2.0-SNAPSHOT</version>
14
        </parent>        
15
        <properties>
16
                <build-dir>${basedir}/../build</build-dir>
17
        <eclipse.project.name>libDXF</eclipse.project.name>
18
        </properties>
19
        <dependencies>
20
                <dependency>
21
                        <groupId>org.gvsig</groupId>
22
                <artifactId>org.gvsig.tools.lib</artifactId>
23
            <scope>compile</scope>
24
              </dependency>
25
              <dependency>
26
                      <groupId>org.gvsig</groupId>
27
                      <artifactId>org.gvsig.projection</artifactId>
28
            <scope>compile</scope>
29
              </dependency>
30
        </dependencies>
31
        <build>
32
                <sourceDirectory>src</sourceDirectory>
33
                <testSourceDirectory>src-test</testSourceDirectory>
34
                <plugins>
35
                        <plugin>
36
                                <groupId>org.apache.maven.plugins</groupId>
37
                                <artifactId>maven-compiler-plugin</artifactId>
38
                                <configuration>
39
                                        <source>1.4</source>
40
                                        <target>1.4</target>
41
                                </configuration>
42
                        </plugin>
43
                </plugins>
44
        </build>
45
</project>