Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / extCenterViewToPoint / pom.xml @ 33614

History | View | Annotate | Download (1.48 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"
4
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6

    
7
        <modelVersion>4.0.0</modelVersion>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.centerviewpoint</artifactId>
10
        <name>extCenterViewToPoint</name>
11
        <version>2.0-SNAPSHOT</version>
12
        <parent>
13
                <artifactId>gvsig-base-extension-pom</artifactId>
14
                <groupId>org.gvsig</groupId>
15
                <version>2.0-SNAPSHOT</version>
16
        </parent>        
17
        <distributionManagement>
18
                <site>
19
                        <id>gvsig-repository</id>
20
                        <url>${site-repository}/</url>
21
                </site>
22
        </distributionManagement>
23

    
24
        <url>http://gvsig.org</url>
25
        <build>
26
                <sourceDirectory>src</sourceDirectory>
27
                <testSourceDirectory>src-test</testSourceDirectory>
28
        <plugins>
29
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
30
            <plugin>
31
                <groupId>org.apache.maven.plugins</groupId>
32
                <artifactId>maven-surefire-plugin</artifactId>
33
                <configuration>
34
                    <skipTests>true</skipTests>
35
                </configuration>
36
            </plugin>       
37
        </plugins>
38
        </build>
39
        <dependencies>
40
                <dependency>
41
                        <groupId>org.gvsig</groupId>
42
                        <artifactId>org.gvsig.app</artifactId>
43
                        <version>2.0-SNAPSHOT</version>
44
                </dependency>
45
        </dependencies>
46

    
47
        <properties>
48
                <build-dir>${basedir}/../build</build-dir>
49
        </properties>
50
</project>