Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dalfile / pom.xml @ 27557

History | View | Annotate | Download (6.99 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
        <modelVersion>4.0.0</modelVersion>
7
        <groupId>org.gvsig</groupId>
8
        <artifactId>org.gvsig.fmap.dal.file</artifactId>
9
        <packaging>jar</packaging>
10
        <version>2.0-SNAPSHOT</version>
11
        <name>libFMap_dalfile</name>
12
        <url>http://gvsig.org</url>
13
        <parent>
14
                <groupId>org.gvsig</groupId>
15
                <artifactId>gvsig-library-base-pom</artifactId>
16
                <version>2.0-SNAPSHOT</version>
17
        </parent>
18

    
19
        <properties>
20
                <!-- dbf -->
21
                <dbf-jarIncludes>org/gvsig/fmap/dal/store/dbf/**/**</dbf-jarIncludes>
22
                <dbf-jarExcludes>NONE</dbf-jarExcludes>
23

    
24
                <!-- dgn -->
25
                <dgn-jarIncludes>org/gvsig/fmap/dal/store/dgn/**/**</dgn-jarIncludes>
26
                <dgn-legend-jarIncludes>org/gvsig/fmap/dal/store/dgn/legend/**/**</dgn-legend-jarIncludes>
27
                <dgn-jarExcludes>${dgn-legend-jarIncludes}</dgn-jarExcludes>
28
                <dgn-legend-jarExcludes>NONE</dgn-legend-jarExcludes>
29

    
30
                <!-- dxf -->
31
                <dxf-jarIncludes>org/gvsig/fmap/dal/store/dxf/**/**</dxf-jarIncludes>
32
                <dxf-legend-jarIncludes>org/gvsig/fmap/dal/store/dxf/legend/**/**</dxf-legend-jarIncludes>
33
                <dxf-jarExcludes>${dxf-legend-jarIncludes}</dxf-jarExcludes>
34
                <dxf-legend-jarExcludes>NONE</dxf-legend-jarExcludes>
35

    
36
                <!-- shp -->
37
                <shp-jarIncludes>org/gvsig/fmap/dal/store/shp/**/**</shp-jarIncludes>
38
                <shp-jarExcludes>NONE</shp-jarExcludes>
39

    
40
                <!-- Common -->
41
                <common-jarIncludes>**/**</common-jarIncludes>
42
        </properties>
43

    
44
        <dependencies>
45
                <dependency>
46
                        <groupId>org.gvsig</groupId>
47
                        <artifactId>org.gvsig.tools</artifactId>
48
                        <version>2.0-SNAPSHOT</version>
49
                </dependency>
50
                <dependency>
51
                        <groupId>org.gvsig</groupId>
52
                        <artifactId>org.gvsig.projection</artifactId>
53
                        <version>2.0-SNAPSHOT</version>
54
                </dependency>
55
                <dependency>
56
                        <groupId>org.gvsig</groupId>
57
                        <artifactId>org.gvsig.fmap.dal</artifactId>
58
                        <version>2.0-SNAPSHOT</version>
59
                </dependency>
60
                <dependency>
61
                        <groupId>org.gvsig</groupId>
62
                        <artifactId>org.gvsig.fmap.dal</artifactId>
63
                        <version>2.0-SNAPSHOT</version>
64
                        <classifier>spi</classifier>
65
                </dependency>
66
                <!-- TODO Reactivar cuando funcionen de nuevo los tests de DAL 
67
                <dependency>
68
                        <groupId>org.gvsig</groupId>
69
                        <artifactId>org.gvsig.fmap.dal</artifactId>
70
                        <version>2.0-SNAPSHOT</version>
71
                        <classifier>test</classifier>
72
                        <scope>test</scope>
73
                </dependency>
74
                -->
75
                <dependency>
76
                        <groupId>org.gvsig</groupId>
77
                        <artifactId>org.cresques.dxf</artifactId>
78
                        <version>2.0-SNAPSHOT</version>
79
                </dependency>
80
                <dependency>
81
                        <groupId>org.gvsig</groupId>
82
                        <artifactId>org.gvsig.fmap.mapcontext</artifactId>
83
                        <version>2.0-SNAPSHOT</version>
84
                </dependency>
85
                <!--
86
                        dependency> <groupId>org.gvsig</groupId>
87
                        <artifactId>org.gvsig.fmap.dal</artifactId>
88
                        <version>2.0-SNAPSHOT</version> <classifier>tests</classifier>
89
                        <scope>test</scope> </dependency
90
                -->
91
                <dependency>
92
                        <groupId>org.gvsig</groupId>
93
                        <artifactId>org.gvsig.tools.evaluator.sqljep</artifactId>
94
                        <version>2.0-SNAPSHOT</version>
95
                </dependency>
96
                <dependency>
97
                        <groupId>org.gvsig.legacy</groupId>
98
                        <artifactId>xerces</artifactId>
99
                        <version>gvsig</version>
100
                </dependency>
101
        </dependencies>
102
        <build>
103
                <sourceDirectory>src</sourceDirectory>
104
                <testSourceDirectory>src-test</testSourceDirectory>
105
                <testResources>
106
                        <testResource>
107
                                <directory>src-test</directory>
108
                        </testResource>
109
                </testResources>
110
                <plugins>
111
                        <plugin>
112
                                <groupId>org.apache.maven.plugins</groupId>
113
                                <artifactId>maven-jar-plugin</artifactId>
114
                                <configuration>
115
                                  <excludes>
116
                                        <exclude>${dbf-jarIncludes}</exclude>
117
                                        <exclude>${dgn-jarIncludes}</exclude>
118
                                        <exclude>${dxf-jarIncludes}</exclude>
119
                                        <exclude>${shp-jarIncludes}</exclude>
120
                                  </excludes>
121
                        </configuration>                
122
                                <executions>
123
                                        <!--
124
                                                Generates a jar file only with the DAL file DBF Store classes
125
                                        -->
126
                                        <execution>
127
                                                <id>dbf</id>
128
                                                <phase>package</phase>
129
                                                <goals>
130
                                                        <goal>jar</goal>
131
                                                </goals>
132
                                                <configuration>
133
                                                        <classifier>store.dbf</classifier>
134
                                                        <includes>
135
                                                                <include>${dbf-jarIncludes}</include>
136
                                                        </includes>
137
                                                        <excludes>
138
                                                                <exclude>${dbf-jarExcludes}</exclude>
139
                                                        </excludes>
140
                                                </configuration>
141
                                        </execution>
142
                                        <!--
143
                                                Generates a jar file only with the DAL file DGN Store classes
144
                                        -->
145
                                        <execution>
146
                                                <id>dgn</id>
147
                                                <phase>package</phase>
148
                                                <goals>
149
                                                        <goal>jar</goal>
150
                                                </goals>
151
                                                <configuration>
152
                                                        <classifier>store.dgn</classifier>
153
                                                        <includes>
154
                                                                <include>${dgn-jarIncludes}</include>
155
                                                        </includes>
156
                                                        <excludes>
157
                                                                <exclude>${dgn-jarExcludes}</exclude>
158
                                                        </excludes>
159
                                                </configuration>
160
                                        </execution>
161
                                        <!--
162
                                                Generates a jar file only with the DAL file DGN Store legend
163
                                                classes
164
                                        -->
165
                                        <execution>
166
                                                <id>dgn.legend</id>
167
                                                <phase>package</phase>
168
                                                <goals>
169
                                                        <goal>jar</goal>
170
                                                </goals>
171
                                                <configuration>
172
                                                        <classifier>store.dgn.legend</classifier>
173
                                                        <includes>
174
                                                                <include>${dgn-legend-jarIncludes}</include>
175
                                                        </includes>
176
                                                        <excludes>
177
                                                                <exclude>${dgn-legend-jarExcludes}</exclude>
178
                                                        </excludes>
179
                                                </configuration>
180
                                        </execution>
181
                                        <!--
182
                                                Generates a jar file only with the DAL file DXF Store classes
183
                                        -->
184
                                        <execution>
185
                                                <id>dxf</id>
186
                                                <phase>package</phase>
187
                                                <goals>
188
                                                        <goal>jar</goal>
189
                                                </goals>
190
                                                <configuration>
191
                                                        <classifier>store.dxf</classifier>
192
                                                        <includes>
193
                                                                <include>${dxf-jarIncludes}</include>
194
                                                        </includes>
195
                                                        <excludes>
196
                                                                <exclude>${dxf-jarExcludes}</exclude>
197
                                                        </excludes>
198
                                                </configuration>
199
                                        </execution>
200
                                        <!--
201
                                                Generates a jar file only with the DAL file DXF Store legend
202
                                                classes
203
                                        -->
204
                                        <execution>
205
                                                <id>dxf.legend</id>
206
                                                <phase>package</phase>
207
                                                <goals>
208
                                                        <goal>jar</goal>
209
                                                </goals>
210
                                                <configuration>
211
                                                        <classifier>store.dxf.legend</classifier>
212
                                                        <includes>
213
                                                                <include>${dxf-legend-jarIncludes}</include>
214
                                                        </includes>
215
                                                        <excludes>
216
                                                                <exclude>${dxf-legend-jarExcludes}</exclude>
217
                                                        </excludes>
218
                                                </configuration>
219
                                        </execution>
220
                                        <!--
221
                                                Generates a jar file only with the DAL file SHP Store classes
222
                                        -->
223
                                        <execution>
224
                                                <id>shp</id>
225
                                                <phase>package</phase>
226
                                                <goals>
227
                                                        <goal>jar</goal>
228
                                                </goals>
229
                                                <configuration>
230
                                                        <classifier>store.shp</classifier>
231
                                                        <includes>
232
                                                                <include>${shp-jarIncludes}</include>
233
                                                        </includes>
234
                                                        <excludes>
235
                                                                <exclude>${shp-jarExcludes}</exclude>
236
                                                        </excludes>
237
                                                </configuration>
238
                                        </execution>
239
                                </executions>
240
                        </plugin>
241
                </plugins>
242
        </build>
243
</project>