Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libDwg / pom.xml @ 39954

History | View | Annotate | Download (2.65 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
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop</url>
11
        <parent>
12
                <groupId>org.gvsig</groupId>
13
                <artifactId>gvsig-base-library-pom</artifactId>
14
                <version>2.0</version>
15
        </parent>        
16
        <scm>
17
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/${name}/</connection>
18
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/${name}/</developerConnection>
19
        <url>https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/${name}</url>
20
    </scm>
21
        
22
        <properties>
23
                <build-dir>${basedir}/../build</build-dir>
24
        <eclipse.project.name>libDwg</eclipse.project.name>
25
        </properties>
26
        <dependencies>
27
        <dependency>
28
            <groupId>org.slf4j</groupId>
29
            <artifactId>slf4j-api</artifactId>
30
            <scope>compile</scope>
31
        </dependency>
32
                <dependency>
33
                        <groupId>org.gvsig</groupId>
34
                <artifactId>org.gvsig.tools.lib</artifactId>
35
            <scope>compile</scope>
36
              </dependency>
37
              <dependency>
38
                      <groupId>org.gvsig</groupId>
39
                      <artifactId>org.gvsig.projection</artifactId>
40
              </dependency>
41
              <dependency>
42
                        <groupId>org.gvsig</groupId>
43
                        <artifactId>org.gvsig.fmap.geometry</artifactId>
44
            <scope>compile</scope>
45
                </dependency>
46
        </dependencies>
47
        <build>
48
                <sourceDirectory>src</sourceDirectory>
49
                <testSourceDirectory>src-test</testSourceDirectory>
50
                <testResources>
51
                        <testResource>
52
                                <directory>src-test</directory>
53
                        </testResource>
54
                </testResources>
55
        <plugins>
56
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
57
            <plugin>
58
                <groupId>org.apache.maven.plugins</groupId>
59
                <artifactId>maven-surefire-plugin</artifactId>
60
                <configuration>
61
                    <skipTests>true</skipTests>
62
                </configuration>
63
            </plugin>       
64
                    <plugin>
65
                      <artifactId>maven-release-plugin</artifactId>
66
                      <version>2.0</version>
67
                      <configuration>
68
                        <tagBase>https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/${artifactId}</tagBase>
69
                      </configuration>
70
                    </plugin>
71
        </plugins>
72
        </build>
73
</project>