Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / extCenterViewToPoint / pom.xml @ 40335

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

    
5
        <modelVersion>4.0.0</modelVersion>
6
        <artifactId>org.gvsig.centerviewpoint</artifactId>
7
        <name>Tools: Center view to point</name>
8
        <version>2.0.1-SNAPSHOT</version>
9
        <parent>
10
                <artifactId>gvsig-base-extension-pom</artifactId>
11
                <groupId>org.gvsig</groupId>
12
                <version>2.0.1-SNAPSHOT</version>
13
        </parent>        
14
        
15
        <description>Tool to center view to point</description>
16
        
17
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop</url>
18
        
19
    <scm>
20
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/extCenterViewToPoint/</connection>
21
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/extCenterViewToPoint/</developerConnection>
22
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop/repository/show/branches/v2_0_0_prep/extensions/extCenterViewToPoint</url>
23
    </scm>
24

    
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.projection</artifactId>
64
            <scope>compile</scope>
65
        </dependency>
66
        <dependency>
67
            <groupId>org.gvsig</groupId>
68
            <artifactId>org.gvsig.fmap.geometry</artifactId>
69
            <scope>compile</scope>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.gvsig</groupId>
73
            <artifactId>org.gvsig.fmap.mapcontext</artifactId>
74
            <scope>compile</scope>
75
        </dependency>
76
        <dependency>
77
            <groupId>org.gvsig</groupId>
78
            <artifactId>org.gvsig.fmap.control</artifactId>
79
            <scope>compile</scope>
80
        </dependency>
81
        <dependency>
82
            <groupId>org.gvsig</groupId>
83
            <artifactId>org.gvsig.ui</artifactId>
84
            <scope>compile</scope>
85
        </dependency>
86
        <dependency>
87
            <groupId>org.gvsig</groupId>
88
            <artifactId>org.gvsig.tools.lib</artifactId>
89
            <scope>compile</scope>
90
        </dependency>
91
        <dependency>
92
            <groupId>org.gvsig</groupId>
93
            <artifactId>org.gvsig.metadata.lib.basic.api</artifactId>
94
            <scope>compile</scope>
95
        </dependency>        
96
        <dependency>
97
            <groupId>org.slf4j</groupId>
98
            <artifactId>slf4j-api</artifactId>
99
            <scope>compile</scope>
100
        </dependency>
101
        </dependencies>
102

    
103
        <properties>
104
                <build-dir>${basedir}/../build</build-dir>
105
        <eclipse.project.name>extCenterViewToPoint</eclipse.project.name>
106
            <package.info.dependencies>required: org.gvsig.app -ge 2</package.info.dependencies>
107
            <package.info.state>final</package.info.state>
108
            <!-- alpha-devel -->
109
        <package.info.categories>Vector, View</package.info.categories>
110
        </properties>
111
</project>