Statistics
| Revision:

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

History | View | Annotate | Download (6.65 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_dataFile</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></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></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></dxf-legend-jarExcludes>
35

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

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

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