Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2058 / libraries / libDwg / pom.xml @ 43469

History | View | Annotate | Download (1.95 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.dwg</artifactId>
7
        <packaging>jar</packaging>
8
        <version>2.0-SNAPSHOT</version>
9
        <name>libDwg</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>libDwg</eclipse.project.name>
18
        </properties>
19
        <dependencies>
20
        <dependency>
21
            <groupId>org.slf4j</groupId>
22
            <artifactId>slf4j-api</artifactId>
23
            <scope>compile</scope>
24
        </dependency>
25
                <dependency>
26
                        <groupId>org.gvsig</groupId>
27
                <artifactId>org.gvsig.tools.lib</artifactId>
28
            <scope>compile</scope>
29
              </dependency>
30
              <dependency>
31
                      <groupId>org.gvsig</groupId>
32
                      <artifactId>org.gvsig.projection</artifactId>
33
              </dependency>
34
              <dependency>
35
                        <groupId>org.gvsig</groupId>
36
                        <artifactId>org.gvsig.fmap.geometry</artifactId>
37
            <scope>compile</scope>
38
                </dependency>
39
        </dependencies>
40
        <build>
41
                <sourceDirectory>src</sourceDirectory>
42
                <testSourceDirectory>src-test</testSourceDirectory>
43
                <testResources>
44
                        <testResource>
45
                                <directory>src-test</directory>
46
                        </testResource>
47
                </testResources>
48
        <plugins>
49
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
50
            <plugin>
51
                <groupId>org.apache.maven.plugins</groupId>
52
                <artifactId>maven-surefire-plugin</artifactId>
53
                <configuration>
54
                    <skipTests>true</skipTests>
55
                </configuration>
56
            </plugin>       
57
        </plugins>
58
        </build>
59
</project>