Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / extensions / extDalTransformJoin / pom.xml @ 33253

History | View | Annotate | Download (3.03 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/maven-v4_0_0.xsd">
6

    
7
        <modelVersion>4.0.0</modelVersion>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.app.join</artifactId>
10
        <packaging>jar</packaging>
11
        <version>2.0-SNAPSHOT</version>
12
        <name>extDalTransformJoin</name>
13
        <url>http://maven.apache.org</url>
14
        <parent>
15
                <groupId>org.gvsig</groupId>
16
                <artifactId>gvsig-base-extension-pom</artifactId>
17
                <version>2.0-SNAPSHOT</version>
18
        </parent>        
19
        <distributionManagement>
20
                <site>
21
                        <id>gvsig-repository</id>
22
                        <url>${site-repository}/</url>
23
                </site>
24
        </distributionManagement>
25

    
26
        <dependencies>
27
                <dependency>
28
                        <groupId>org.gvsig</groupId>
29
                        <artifactId>org.gvsig.app.daltransform</artifactId>
30
                        <version>2.0-SNAPSHOT</version>
31
                </dependency>        
32
                <dependency>
33
                        <groupId>org.gvsig</groupId>
34
                        <artifactId>org.gvsig.andami</artifactId>
35
                        <version>2.0-SNAPSHOT</version>
36
                </dependency>
37
                <dependency>
38
                        <groupId>org.gvsig</groupId>
39
                        <artifactId>org.gvsig.app</artifactId>
40
                        <version>2.0-SNAPSHOT</version>
41
                </dependency>                
42
                <dependency>
43
                        <groupId>org.gvsig</groupId>
44
                        <artifactId>org.gvsig.projection</artifactId>
45
                        <version>2.0-SNAPSHOT</version>
46
                </dependency>
47
                <!--TEST-->
48
                <dependency>
49
                        <groupId>org.gvsig</groupId>
50
                        <artifactId>org.gvsig.app.daltransform</artifactId>
51
                        <version>2.0-SNAPSHOT</version>
52
                        <classifier>tests</classifier>
53
                        <scope>test</scope>
54
                </dependency>
55
                <dependency>
56
                        <groupId>org.gvsig</groupId>
57
                        <artifactId>org.gvsig.fmap.dal</artifactId>
58
                        <version>2.0-SNAPSHOT</version>
59
                        <classifier>tests</classifier>
60
                        <scope>test</scope>
61
                </dependency>
62
                <dependency>
63
                        <groupId>org.gvsig</groupId>
64
                        <artifactId>org.gvsig.tools.lib</artifactId>
65
                        <classifier>tests</classifier>
66
                        <scope>test</scope>
67
                </dependency>                
68
        </dependencies>
69
        <build>
70
                <sourceDirectory>src</sourceDirectory>
71
                <testSourceDirectory>src-test</testSourceDirectory>
72
                <resources>
73
                        <resource>
74
                                <directory>${basedir}/resources</directory>
75
                        </resource>
76
                </resources>
77
                <plugins>                        
78
                        <plugin>
79
                                <groupId>org.apache.maven.plugins</groupId>
80
                                <artifactId>maven-jar-plugin</artifactId>
81
                                <executions>
82
                                        <!--
83
                                                Generates a jar file only with the test classes
84
                                        -->
85
                                        <execution>
86
                                                <goals>
87
                                                        <goal>test-jar</goal>
88
                                                </goals>
89
                                                <configuration>
90
                                                        <includes>
91
                                                                <include>**/**</include>                                                                                                
92
                                                        </includes>
93
                                                        <excludes>
94
                                                                <exclude>NONE</exclude>
95
                                                        </excludes>
96
                                                </configuration>
97
                                        </execution>
98
                                </executions>
99
                        </plugin>
100
                        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
101
                        <plugin>
102
                                <groupId>org.apache.maven.plugins</groupId>
103
                                <artifactId>maven-surefire-plugin</artifactId>
104
                                <configuration>
105
                                        <skipTests>true</skipTests>
106
                                </configuration>
107
                        </plugin>
108
                </plugins>
109
        </build>        
110
        
111
        <properties>
112
                <build-dir>${basedir}/../build</build-dir>
113
        </properties>
114
</project>