Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / extDataLocator / pom.xml @ 40202

History | View | Annotate | Download (3.78 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
        <artifactId>org.gvsig.datalocator</artifactId>
9
        <name>Tools: Locator by attribute</name>
10
        <version>2.0-SNAPSHOT</version>
11
        <parent>
12
                <artifactId>gvsig-base-extension-pom</artifactId>
13
                <groupId>org.gvsig</groupId>
14
                <version>2.0</version>
15
        </parent>        
16
        <description>Locator by atribute</description>
17
        
18
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop</url>
19
        
20
    <scm>
21
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/extDataLocator/</connection>
22
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/extDataLocator/</developerConnection>
23
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop/repository/show/branches/v2_0_0_prep/extensions/extDataLocator</url>
24
    </scm>
25

    
26
        <build>
27
                <sourceDirectory>src</sourceDirectory>
28
                <testSourceDirectory>src-test</testSourceDirectory>
29
        <plugins>
30
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
31
            <plugin>
32
                <groupId>org.apache.maven.plugins</groupId>
33
                <artifactId>maven-surefire-plugin</artifactId>
34
                <configuration>
35
                    <skipTests>true</skipTests>
36
                </configuration>
37
            </plugin>    
38
            
39
                    <plugin>
40
                      <artifactId>maven-release-plugin</artifactId>
41
                      <version>2.0</version>
42
                      <configuration>
43
                        <tagBase>https://devel.gvsig.org/svn/gvsig-desktop/tags/extensions/${artifactId}</tagBase>
44
                      </configuration>
45
                    </plugin>                        
46
   
47
        </plugins>        
48
        </build>
49
        <dependencies>
50
                <dependency>
51
                        <groupId>org.gvsig</groupId>
52
                        <artifactId>org.gvsig.app</artifactId>
53
                        <version>2.0</version>
54
            <scope>compile</scope>
55
                </dependency>
56
        <dependency>
57
            <groupId>org.gvsig</groupId>
58
            <artifactId>org.gvsig.andami</artifactId>
59
            <scope>compile</scope>
60
        </dependency>
61
        <dependency>
62
            <groupId>org.gvsig</groupId>
63
            <artifactId>org.gvsig.fmap.dal</artifactId>
64
            <scope>compile</scope>
65
        </dependency>
66
        <dependency>
67
            <groupId>org.gvsig</groupId>
68
            <artifactId>org.gvsig.fmap.mapcontext</artifactId>
69
            <scope>compile</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.gvsig</groupId>
73
            <artifactId>org.gvsig.tools.lib</artifactId>
74
            <scope>compile</scope>
75
        </dependency>
76
        <dependency>
77
            <groupId>org.gvsig</groupId>
78
            <artifactId>org.gvsig.fmap.geometry</artifactId>
79
            <scope>compile</scope>
80
        </dependency>
81
        <dependency>
82
            <groupId>org.gvsig</groupId>
83
            <artifactId>org.gvsig.metadata.lib.basic.api</artifactId>
84
            <scope>compile</scope>
85
        </dependency>        
86
        <dependency>
87
            <groupId>org.gvsig</groupId>
88
            <artifactId>org.gvsig.ui</artifactId>
89
            <scope>compile</scope>
90
        </dependency>        
91
        <dependency>
92
            <groupId>org.gvsig</groupId>
93
            <artifactId>org.gvsig.projection</artifactId>
94
            <scope>compile</scope>
95
        </dependency>        
96
        </dependencies>
97

    
98
        <properties>
99
                <build-dir>${basedir}/../build</build-dir>
100
        <eclipse.project.name>extDataLocator</eclipse.project.name>
101
            <package.info.dependencies>required: org.gvsig.app -ge 2</package.info.dependencies>
102
            <package.info.state>final</package.info.state>
103
            <!-- alpha-devel -->
104
        </properties>
105
</project>