Statistics
| Revision:

gvsig-tools / org.gvsig.maven.base / trunk / org.gvsig.maven.base / org.gvsig.maven.base.pom / pom.xml @ 776

History | View | Annotate | Download (60.4 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
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
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.maven.base.pom</artifactId>
6
    <packaging>pom</packaging>
7
    <name>org.gvsig.maven.base.pom</name>
8
    <description>Base POM for all GvSIG projects</description>
9
    <url>http://devel.gvsig.org/sites/${project.artifactId}/${project.version}</url>
10
    <inceptionYear>2004</inceptionYear>
11
    <parent>
12
    
13
    
14
        <groupId>org.gvsig</groupId>
15
        <artifactId>org.gvsig.maven.base</artifactId>
16
        <version>1.0.9-SNAPSHOT</version>
17
    </parent>
18
    <issueManagement>
19
        <system>redmine</system>
20
        <url>https://gvsig-devel.gva.es/redmine/projects/gvsig-desktop</url>
21
    </issueManagement>
22
    <ciManagement />
23
    <distributionManagement>
24
        <site>
25
            <id>gvsig-repository</id>
26
            <url>dav:https://devel.gvsig.org/sites/${project.artifactId}/${project.version}</url>
27
        </site>
28
    </distributionManagement>
29
    <mailingLists>
30
        <mailingList>
31
            <name>User List</name>
32
            <subscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_usuarios</subscribe>
33
            <unsubscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_usuarios</unsubscribe>
34
            <post>gvsig_usuarios@listserv.gva.es</post>
35
            <archive>http://www.gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
36
            <otherArchives>
37
                <otherArchive>http://www.mail-archive.com/gvsig_usuarios@runas.cap.gva.es</otherArchive>
38
                <otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
39
            </otherArchives>
40
        </mailingList>
41
        <mailingList>
42
            <name>Developer List</name>
43
            <subscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_desarrolladores</subscribe>
44
            <unsubscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_desarrolladores</unsubscribe>
45
            <post>gvsig_desarrolladores@listserv.gva.es</post>
46
            <archive>http://www.gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
47
            <otherArchives>
48
                <otherArchive>http://www.mail-archive.com/gvsig_desarrolladores@runas.cap.gva.es</otherArchive>
49
                <otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
50
            </otherArchives>
51
        </mailingList>
52
        <mailingList>
53
            <name>International List</name>
54
            <subscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_internacional</subscribe>
55
            <unsubscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_internacional</unsubscribe>
56
            <post>gvsig_internacional@listserv.gva.es</post>
57
            <archive>http://www.gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
58
            <otherArchives>
59
                <otherArchive>http://www.mail-archive.com/gvsig_internacional@runas.cap.gva.es</otherArchive>
60
                <otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
61
            </otherArchives>
62
        </mailingList>
63
    </mailingLists>
64
    <!-- Put here the global properties who use all the projects of GvSIG -->
65
    <properties>
66
        <localRepository>${user.home}/.m2/repository</localRepository>
67
        <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
68
        <site-repository>dav:https://devel.gvsig.org/sites/${project.artifactId}/${project.version}</site-repository>
69
        <base.tools.path>${project.build.directory}/org.gvsig.maven.base.tools</base.tools.path>
70
        <eclipse.project.name>${project.artifactId}</eclipse.project.name>
71
    </properties>
72
    <dependencyManagement>
73
        <!-- NOTE: the list of dependencies is ordered alphabetically by 
74
            the artifactId. Please, if new dependencies are added, keep the order. -->
75
        <dependencies>
76
            <dependency>
77
                <groupId>org.n52</groupId>
78
                <artifactId>52n-wps-config</artifactId>
79
                <version>1.0.1</version>
80
                <scope>compile</scope>
81
            </dependency>
82
            <dependency>
83
                <groupId>net.opengis</groupId>
84
                <artifactId>52n-wps-xml</artifactId>
85
                <version>1.0.0</version>
86
                <scope>compile</scope>
87
            </dependency>
88
            <dependency>
89
                <groupId>org.jzkit</groupId>
90
                <artifactId>a2j-runtime</artifactId>
91
                <version>2.0.9</version>
92
                <scope>compile</scope>
93
            </dependency>
94
            <dependency>
95
                <groupId>org.jzkit</groupId>
96
                <artifactId>a2j</artifactId>
97
                <version>2.0.9</version>
98
                <scope>compile</scope>
99
            </dependency>
100
            <dependency>
101
                <groupId>net.swing</groupId>
102
                <artifactId>amic-util</artifactId>
103
                <version>unknown</version>
104
                <scope>compile</scope>
105
            </dependency>
106
            <dependency>
107
                <groupId>org.apache.ant</groupId>
108
                <artifactId>ant</artifactId>
109
                <version>1.8.1</version>
110
                <scope>compile</scope>
111
            </dependency>
112
            <dependency>
113
                <groupId>org.apache.ant</groupId>
114
                <artifactId>ant-apache-oro</artifactId>
115
                <version>1.8.1</version>
116
                <scope>compile</scope>
117
            </dependency>
118
            <dependency>
119
                <groupId>ant-contrib</groupId>
120
                <artifactId>ant-contrib</artifactId>
121
                <version>1.0b3</version>
122
                <scope>compile</scope>
123
                <exclusions>
124
                    <exclusion>
125
                        <groupId>ant</groupId>
126
                        <artifactId>ant</artifactId>
127
                    </exclusion>
128
                </exclusions>
129
            </dependency>
130
            <dependency>
131
                <groupId>org.apache.ant</groupId>
132
                <artifactId>ant-launcher</artifactId>
133
                <version>1.8.1</version>
134
                <scope>compile</scope>
135
            </dependency>
136
            <dependency>
137
                <groupId>org.apache.ant</groupId>
138
                <artifactId>ant-nodeps</artifactId>
139
                <version>1.8.1</version>
140
                <scope>compile</scope>
141
            </dependency>
142
            <dependency>
143
                <groupId>org.tigris.antelope</groupId>
144
                <artifactId>antelopetasks</artifactId>
145
                <version>3.2.10</version>
146
                <scope>compile</scope>
147
            </dependency>
148
            <dependency>
149
                <groupId>com.sardak</groupId>
150
                <artifactId>antform</artifactId>
151
                <version>2.0</version>
152
                <scope>compile</scope>
153
            </dependency>
154
            <dependency>
155
                <groupId>org.apache.xmlgraphics</groupId>
156
                <artifactId>batik-awt-util</artifactId>
157
                <version>1.7</version>
158
                <scope>compile</scope>
159
            </dependency>
160
            <dependency>
161
                <groupId>org.apache.xmlgraphics</groupId>
162
                <artifactId>batik-bridge</artifactId>
163
                <version>1.7</version>
164
                <scope>compile</scope>
165
            </dependency>
166
            <dependency>
167
                <groupId>org.gvsig</groupId>
168
                <artifactId>batik-ext-gvsig-custom</artifactId>
169
                <version>1.7.0</version>
170
                <scope>compile</scope>
171
            </dependency>
172
            <dependency>
173
                <groupId>org.apache.xmlgraphics</groupId>
174
                <artifactId>batik-gui-util</artifactId>
175
                <version>1.7</version>
176
                <scope>compile</scope>
177
            </dependency>
178
            <dependency>
179
                <groupId>org.apache.xmlgraphics</groupId>
180
                <artifactId>batik-gvt</artifactId>
181
                <version>1.7</version>
182
                <scope>compile</scope>
183
            </dependency>
184
            <dependency>
185
                <groupId>org.apache.xmlgraphics</groupId>
186
                <artifactId>batik-script</artifactId>
187
                <version>1.7</version>
188
                <scope>compile</scope>
189
            </dependency>
190
            <dependency>
191
                <groupId>org.apache.xmlgraphics</groupId>
192
                <artifactId>batik-xml</artifactId>
193
                <version>1.7</version>
194
                <scope>compile</scope>
195
            </dependency>
196
            <dependency>
197
                <groupId>bsf</groupId>
198
                <artifactId>bsf</artifactId>
199
                <version>2.3.0-rc1</version>
200
                <scope>compile</scope>
201
            </dependency>
202
            <dependency>
203
                <groupId>org.apache.bsf</groupId>
204
                <artifactId>bsf-api</artifactId>
205
                <version>3.1</version>
206
                <scope>compile</scope>
207
            </dependency>
208
            <dependency>
209
                <groupId>org.apache.bsf</groupId>
210
                <artifactId>bsf-utils</artifactId>
211
                <version>3.1</version>
212
                <scope>compile</scope>
213
            </dependency>
214
            <dependency>
215
                <groupId>bsh</groupId>
216
                <artifactId>bsh</artifactId>
217
                <version>2.0b4</version>
218
                <scope>compile</scope>
219
            </dependency>
220
            <dependency>
221
                <groupId>castor</groupId>
222
                <artifactId>castor</artifactId>
223
                <version>0.9.5.3</version>
224
                <scope>compile</scope>
225
            </dependency>
226
            <dependency>
227
                <groupId>commons-beanutils</groupId>
228
                <artifactId>commons-beanutils</artifactId>
229
                <version>1.6</version>
230
                <scope>compile</scope>
231
            </dependency>
232
            <dependency>
233
                <groupId>commons-dbcp</groupId>
234
                <artifactId>commons-dbcp</artifactId>
235
                <version>1.2.2</version>
236
                <scope>compile</scope>
237
            </dependency>
238
            <dependency>
239
                <groupId>commons-collections</groupId>
240
                <artifactId>commons-collections</artifactId>
241
                <version>3.2.1</version>
242
                <scope>compile</scope>
243
            </dependency>
244
            <dependency>
245
                <groupId>commons-httpclient</groupId>
246
                <artifactId>commons-httpclient</artifactId>
247
                <version>2.0.2</version>
248
                <scope>compile</scope>
249
            </dependency>
250
            <dependency>
251
                <groupId>commons-io</groupId>
252
                <artifactId>commons-io</artifactId>
253
                <version>2.4</version>
254
                <scope>compile</scope>
255
            </dependency>
256
            <dependency>
257
                <groupId>commons-logging</groupId>
258
                <artifactId>commons-logging</artifactId>
259
                <version>1.1.1</version>
260
                <scope>compile</scope>
261
            </dependency>
262
            <dependency>
263
                <groupId>commons-logging</groupId>
264
                <artifactId>commons-logging</artifactId>
265
                <version>1.1.1</version>
266
                <classifier>api</classifier>
267
                <scope>compile</scope>
268
            </dependency>
269
            <dependency>
270
                <groupId>org.dspace</groupId>
271
                <artifactId>cql-java</artifactId>
272
                <version>1.0</version>
273
                <scope>compile</scope>
274
            </dependency>
275
            <dependency>
276
                <groupId>flanagan</groupId>
277
                <artifactId>flanagan</artifactId>
278
                <version>20090616</version>
279
                <scope>compile</scope>
280
            </dependency>
281
            <dependency>
282
                <groupId>net.sf</groupId>
283
                <artifactId>flib-jcalendar</artifactId>
284
                <version>unknown</version>
285
                <scope>compile</scope>
286
            </dependency>
287
            <dependency>
288
                <groupId>org.opengis</groupId>
289
                <artifactId>geoapi</artifactId>
290
                <version>2.0</version>
291
                <scope>compile</scope>
292
            </dependency>
293
            <dependency>
294
                <groupId>geojava</groupId>
295
                <artifactId>geojava</artifactId>
296
                <version>unknown</version>
297
                <scope>compile</scope>
298
            </dependency>
299
            <dependency>
300
                <groupId>org.geonames</groupId>
301
                <artifactId>geonames</artifactId>
302
                <version>1.0</version>
303
                <classifier>java5</classifier>
304
                <scope>compile</scope>
305
            </dependency>
306
            <dependency>
307
                <groupId>org.codehaus.groovy</groupId>
308
                <artifactId>groovy-all</artifactId>
309
                <version>1.7.6</version>
310
                <scope>compile</scope>
311
            </dependency>
312
            <dependency>
313
                <groupId>org.geotools</groupId>
314
                <artifactId>gt2-legacy</artifactId>
315
                <version>2.2-RC2</version>
316
                <scope>compile</scope>
317
            </dependency>
318
            <dependency>
319
                <groupId>org.geotools</groupId>
320
                <artifactId>gt2-main</artifactId>
321
                <version>2.2.2</version>
322
                <scope>compile</scope>
323
            </dependency>
324
            <dependency>
325
                <groupId>org.geotools</groupId>
326
                <artifactId>gt2-referencing</artifactId>
327
                <version>2.2-RC2</version>
328
                <scope>compile</scope>
329
            </dependency>
330
            <dependency>
331
                <groupId>hsqldb</groupId>
332
                <artifactId>hsqldb</artifactId>
333
                <version>1.8.0.10</version>
334
                <scope>compile</scope>
335
            </dependency>
336
            <dependency>
337
                <groupId>com.h2database</groupId>
338
                <artifactId>h2</artifactId>
339
                <version>1.3.150</version>
340
                <scope>compile</scope>
341
            </dependency>
342
            <dependency>
343
                <groupId>org.ini4j</groupId>
344
                <artifactId>ini4j</artifactId>
345
                <version>0.5.1</version>
346
                <scope>compile</scope>
347
            </dependency>
348
            <dependency>
349
                <groupId>com.lowagie</groupId>
350
                <artifactId>itext</artifactId>
351
                <version>2.1.4</version>
352
                <scope>compile</scope>
353
            </dependency>
354
            <dependency>
355
                <groupId>javax.media</groupId>
356
                <artifactId>jai_core</artifactId>
357
                <version>1.1.3</version>
358
                <scope>compile</scope>
359
            </dependency>
360
            <dependency>
361
                <groupId>javax.media</groupId>
362
                <artifactId>jai_codec</artifactId>
363
                <version>1.1.3</version>
364
                <scope>compile</scope>
365
            </dependency>
366
            <dependency>
367
                <groupId>gov.nist.math</groupId>
368
                <artifactId>jama</artifactId>
369
                <version>unknown</version>
370
                <scope>compile</scope>
371
            </dependency>
372
            <dependency>
373
                <groupId>javax.help</groupId>
374
                <artifactId>javahelp</artifactId>
375
                <version>2.0.05</version>
376
                <scope>compile</scope>
377
            </dependency>
378
            <dependency>
379
                <groupId>com.toedter</groupId>
380
                <artifactId>jcalendar</artifactId>
381
                <version>1.1.4</version>
382
                <scope>compile</scope>
383
            </dependency>
384
            <dependency>
385
                <groupId>jfree</groupId>
386
                <artifactId>jcommon</artifactId>
387
                <version>1.0.12</version>
388
                <scope>compile</scope>
389
            </dependency>
390
            <dependency>
391
                <groupId>jdom</groupId>
392
                <artifactId>jdom</artifactId>
393
                <version>1.0</version>
394
                <scope>compile</scope>
395
            </dependency>
396
            <dependency>
397
                <groupId>org.nfunk</groupId>
398
                <artifactId>jep</artifactId>
399
                <version>2.4.0</version>
400
                <scope>compile</scope>
401
            </dependency>
402
            <dependency>
403
                <groupId>jfree</groupId>
404
                <artifactId>jfreechart</artifactId>
405
                <version>1.0.7</version>
406
                <scope>compile</scope>
407
            </dependency>
408
            <dependency>
409
                <groupId>org.jfree</groupId>
410
                <artifactId>jfreechart</artifactId>
411
                <version>1.0.14</version>
412
                <scope>compile</scope>
413
            </dependency>
414
            <dependency>
415
                <groupId>org.jgraf</groupId>
416
                <artifactId>jgraf</artifactId>
417
                <version>0.0.1</version>
418
                <scope>compile</scope>
419
            </dependency>
420
            <dependency>
421
                <groupId>net.sf</groupId>
422
                <artifactId>jgraph</artifactId>
423
                <version>5.10.1.5</version>
424
                <scope>compile</scope>
425
            </dependency>
426
            <dependency>
427
                <groupId>net.sf</groupId>
428
                <artifactId>jgridshiftapi</artifactId>
429
                <version>1.0</version>
430
                <scope>compile</scope>
431
            </dependency>
432
            <dependency>
433
                <groupId>com.sun</groupId>
434
                <artifactId>jimi</artifactId>
435
                <version>1.1</version>
436
                <scope>compile</scope>
437
            </dependency>
438
            <dependency>
439
                <groupId>org.jpedal</groupId>
440
                <artifactId>jpedal_lgpl</artifactId>
441
                <version>4.37b36</version>
442
                <scope>compile</scope>
443
            </dependency>
444
            <dependency>
445
                <groupId>org.jruby</groupId>
446
                <artifactId>jruby</artifactId>
447
                <version>1.5.6</version>
448
                <scope>compile</scope>
449
            </dependency>
450
            <dependency>
451
                <groupId>rhino</groupId>
452
                <artifactId>js</artifactId>
453
                <!-- This is the version already included sin Java 1.6 -->
454
                <version>1.6R2</version>
455
                <scope>compile</scope>
456
            </dependency>
457
            <dependency>
458
                <groupId>net.sf</groupId>
459
                <artifactId>jsi</artifactId>
460
                <version>unknown</version>
461
                <scope>compile</scope>
462
            </dependency>
463
            <!-- <dependency> <groupId>com.sun.script.js</groupId> <artifactId></artifactId> 
464
                <version></version> <scope>compile</scope></dependency> -->
465
            <dependency>
466
                <groupId>javax.units</groupId>
467
                <artifactId>jsr108</artifactId>
468
                <version>0.01</version>
469
                <scope>compile</scope>
470
            </dependency>
471
            <dependency>
472
                <groupId>com.vividsolutions</groupId>
473
                <artifactId>jts</artifactId>
474
                <version>1.9</version>
475
                <scope>compile</scope>
476
            </dependency>
477
            <dependency>
478
                <groupId>com.vividsolutions</groupId>
479
                <artifactId>jtsio</artifactId>
480
                <version>1.7</version>
481
                <scope>compile</scope>
482
            </dependency>
483
            <dependency>
484
                <groupId>junit</groupId>
485
                <artifactId>junit</artifactId>
486
                <version>3.8.1</version>
487
                <scope>test</scope>
488
            </dependency>
489
            <dependency>
490
                <groupId>jwizardcomponent</groupId>
491
                <artifactId>jwizardcomponent</artifactId>
492
                <version>1.2.2</version>
493
                <scope>compile</scope>
494
            </dependency>
495
            <dependency>
496
                <groupId>jwizardcomponent</groupId>
497
                <artifactId>jwizardcomponent-0i18n</artifactId>
498
                <version>1.2.2.1</version>
499
                <scope>compile</scope>
500
            </dependency>
501
            <dependency>
502
                <groupId>org.python</groupId>
503
                <artifactId>jython</artifactId>
504
                <version>2.5.2</version>
505
                <scope>compile</scope>
506
            </dependency>
507
            <dependency>
508
                <groupId>org.jzkit</groupId>
509
                <artifactId>jzkit2-core</artifactId>
510
                <version>2.0.0</version>
511
                <scope>compile</scope>
512
            </dependency>
513
            <dependency>
514
                <groupId>org.jzkit</groupId>
515
                <artifactId>jzkit2-z3950</artifactId>
516
                <version>2.0.0</version>
517
                <scope>compile</scope>
518
            </dependency>
519
            <dependency>
520
                <groupId>org.jzkit</groupId>
521
                <artifactId>jzkit2-origin</artifactId>
522
                <version>2.0.0</version>
523
                <scope>compile</scope>
524
            </dependency>
525
            <dependency>
526
                <groupId>net.sf.kxml</groupId>
527
                <artifactId>kxml2</artifactId>
528
                <version>2.2.2</version>
529
                <scope>compile</scope>
530
            </dependency>
531
            <dependency>
532
                <groupId>log4j</groupId>
533
                <artifactId>log4j</artifactId>
534
                <version>1.2.14</version>
535
                <scope>compile</scope>
536
            </dependency>
537
            <dependency>
538
                <groupId>com.jgoodies</groupId>
539
                <artifactId>forms</artifactId>
540
                <version>1.0.7</version>
541
                <scope>compile</scope>
542
            </dependency>
543
            <dependency>
544
                <groupId>com.jgoodies</groupId>
545
                <artifactId>looks</artifactId>
546
                <version>2.1.4</version>
547
                <scope>compile</scope>
548
            </dependency>
549
            <dependency>
550
                <groupId>com.ostermiller</groupId>
551
                <artifactId>ostermillerutils</artifactId>
552
                <version>1.4.3</version>
553
                <scope>compile</scope>
554
            </dependency>
555
            <dependency>
556
                <groupId>mysql</groupId>
557
                <artifactId>mysql-connector-java</artifactId>
558
                <version>5.1.6</version>
559
                <scope>compile</scope>
560
            </dependency>
561
            <dependency>
562
                              <groupId>postgresql</groupId>
563
                              <artifactId>postgresql</artifactId>
564
                              <version>9.1-901.jdbc3</version>
565
                              <scope>compile</scope>
566
                    </dependency>
567
            <dependency>
568
                <groupId>es.unex</groupId>
569
                <artifactId>sextante</artifactId>
570
                <version>0.6.0</version>
571
                <scope>compile</scope>
572
            </dependency>
573
            <dependency>
574
                <groupId>es.unex</groupId>
575
                <artifactId>sextante_gui</artifactId>
576
                <version>0.6.0</version>
577
                <scope>compile</scope>
578
            </dependency>
579
            <dependency>
580
                <groupId>es.unex</groupId>
581
                <artifactId>sextante_wps</artifactId>
582
                <version>0.6.0</version>
583
                <scope>compile</scope>
584
            </dependency>
585
            <dependency>
586
                <groupId>es.unex</groupId>
587
                <artifactId>libMath</artifactId>
588
                <version>0.6.0</version>
589
                <scope>compile</scope>
590
            </dependency>
591
            <dependency>
592
                <groupId>es.unex</groupId>
593
                <artifactId>libDocEngines</artifactId>
594
                <version>0.6.0</version>
595
                <scope>compile</scope>
596
            </dependency>
597
            <dependency>
598
                <groupId>sil</groupId>
599
                <artifactId>sil</artifactId>
600
                <version>0.43b-am1</version>
601
                <scope>compile</scope>
602
            </dependency>
603
            <dependency>
604
                <groupId>org.slf4j</groupId>
605
                <artifactId>slf4j-api</artifactId>
606
                <version>1.5.5</version>
607
                <scope>compile</scope>
608
            </dependency>
609
            <dependency>
610
                <groupId>org.slf4j</groupId>
611
                <artifactId>slf4j-log4j12</artifactId>
612
                <version>1.5.5</version>
613
                <scope>runtime</scope>
614
            </dependency>
615
            <dependency>
616
                <groupId>net.sf.smc</groupId>
617
                <artifactId>smc</artifactId>
618
                <version>4.3</version>
619
                <scope>compile</scope>
620
            </dependency>
621
            <dependency>
622
                <groupId>soap</groupId>
623
                <artifactId>soap</artifactId>
624
                <version>2.3</version>
625
                <scope>compile</scope>
626
            </dependency>
627
            <dependency>
628
                <groupId>spatialindex</groupId>
629
                <artifactId>spatialindex</artifactId>
630
                <version>unknown</version>
631
                <scope>compile</scope>
632
            </dependency>
633
            <dependency>
634
                <groupId>org.springframework</groupId>
635
                <artifactId>spring</artifactId>
636
                <version>1.2.8</version>
637
                <scope>compile</scope>
638
            </dependency>
639
            <dependency>
640
                <groupId>net.sf</groupId>
641
                <artifactId>sqljep</artifactId>
642
                <version>0.2</version>
643
                <scope>compile</scope>
644
            </dependency>
645
            <dependency>
646
                <groupId>org.tmatesoft.svnkit</groupId>
647
                <artifactId>svnkit</artifactId>
648
                <version>1.3.3</version>
649
                <scope>compile</scope>
650
            </dependency>
651
            <dependency>
652
                <groupId>org.tmatesoft.svnkit</groupId>
653
                <artifactId>svnkit-cli</artifactId>
654
                <version>1.3.3</version>
655
                <scope>compile</scope>
656
            </dependency>
657
            <dependency>
658
                <groupId>tablelayout</groupId>
659
                <artifactId>TableLayout</artifactId>
660
                <version>20050920</version>
661
                <scope>compile</scope>
662
            </dependency>
663
            <dependency>
664
                <groupId>info.clearthought</groupId>
665
                <artifactId>TableLayout-bin-jdk1.5</artifactId>
666
                <version>2007-04-21</version>
667
                <scope>compile</scope>
668
            </dependency>
669
            <dependency>
670
                <groupId>net.sourceforge.thinlet</groupId>
671
                <artifactId>thinlet</artifactId>
672
                <version>2005-03-28</version>
673
                <scope>compile</scope>
674
            </dependency>
675
            <dependency>
676
                <groupId>gnu.trove</groupId>
677
                <artifactId>trove</artifactId>
678
                <version>0.1.8</version>
679
                <scope>compile</scope>
680
            </dependency>
681
            <dependency>
682
                <groupId>java3d</groupId>
683
                <artifactId>vecmath</artifactId>
684
                <version>1.3.1</version>
685
                <scope>compile</scope>
686
            </dependency>
687
            <dependency>
688
                <groupId>org.apache</groupId>
689
                <artifactId>xbean</artifactId>
690
                <version>2.2.0</version>
691
                <scope>compile</scope>
692
            </dependency>
693
            <dependency>
694
                <groupId>xerces</groupId>
695
                <artifactId>xercesImpl</artifactId>
696
                <version>2.5.0</version>
697
                <scope>compile</scope>
698
            </dependency>
699
            <dependency>
700
                <groupId>xml-apis</groupId>
701
                <artifactId>xml-apis-ext</artifactId>
702
                <version>1.3.04</version>
703
                <scope>compile</scope>
704
            </dependency>
705
            <dependency>
706
                <groupId>xmlpull</groupId>
707
                <artifactId>xmlpull</artifactId>
708
                <version>1.1.3.1</version>
709
                <scope>compile</scope>
710
            </dependency>
711
            <dependency>
712
                <groupId>zql</groupId>
713
                <artifactId>zql</artifactId>
714
                <version>unknown</version>
715
                <scope>compile</scope>
716
            </dependency>
717
            <dependency>
718
                <groupId>joda-time</groupId>
719
                <artifactId>joda-time</artifactId>
720
                <version>1.6</version>
721
                <scope>compile</scope>
722
            </dependency>
723
        </dependencies>
724
    </dependencyManagement>
725
    <dependencies>
726
        <dependency>
727
            <groupId>junit</groupId>
728
            <artifactId>junit</artifactId>
729
        </dependency>
730
        <dependency>
731
            <groupId>org.gvsig</groupId>
732
            <artifactId>org.gvsig.maven.base.tools</artifactId>
733
            <version>1.0.9-SNAPSHOT</version>
734
        </dependency>
735
    </dependencies>
736
    <build>
737
        <pluginManagement>
738
            <plugins>
739
                <!-- This plugin is used to tell the eclipse m2e plugin to 
740
                    ignore some maven plugins unknown for it, that he shows as an error just 
741
                    in case they affect the eclipse project configuration -->
742
                <plugin>
743
                    <groupId>org.eclipse.m2e</groupId>
744
                    <artifactId>lifecycle-mapping</artifactId>
745
                    <version>1.0.0</version>
746
                    <configuration>
747
                        <lifecycleMappingMetadata>
748
                            <pluginExecutions>
749
                                <pluginExecution>
750
                                    <pluginExecutionFilter>
751
                                        <groupId>org.apache.maven.plugins</groupId>
752
                                        <artifactId>maven-dependency-plugin</artifactId>
753
                                        <versionRange>[2.0,)</versionRange>
754
                                        <goals>
755
                                            <goal>copy-dependencies</goal>
756
                                            <goal>unpack-dependencies</goal>
757
                                        </goals>
758
                                    </pluginExecutionFilter>
759
                                    <action>
760
                                        <ignore />
761
                                    </action>
762
                                </pluginExecution>
763
                                <pluginExecution>
764
                                    <pluginExecutionFilter>
765
                                        <groupId>org.codehaus.mojo</groupId>
766
                                        <artifactId>exec-maven-plugin</artifactId>
767
                                        <versionRange>[1.2,)</versionRange>
768
                                        <goals>
769
                                            <goal>exec</goal>
770
                                        </goals>
771
                                    </pluginExecutionFilter>
772
                                    <action>
773
                                        <ignore />
774
                                    </action>
775
                                </pluginExecution>
776
                                <pluginExecution>
777
                                    <pluginExecutionFilter>
778
                                        <groupId>org.codehaus.mojo</groupId>
779
                                        <artifactId>properties-maven-plugin</artifactId>
780
                                        <versionRange>[1.0-alpha-2,)</versionRange>
781
                                        <goals>
782
                                            <goal>read-project-properties</goal>
783
                                        </goals>
784
                                    </pluginExecutionFilter>
785
                                    <action>
786
                                        <ignore />
787
                                    </action>
788
                                </pluginExecution>
789
                                <pluginExecution>
790
                                    <pluginExecutionFilter>
791
                                        <groupId>org.gvsig</groupId>
792
                                        <artifactId>org.gvsig.installer.maven</artifactId>
793
                                        <versionRange>[1.0.0,)</versionRange>
794
                                        <goals>
795
                                            <goal>write-info</goal>
796
                                            <goal>create-package</goal>
797
                                            <goal>create-package-index</goal>
798
                                        </goals>
799
                                    </pluginExecutionFilter>
800
                                    <action>
801
                                        <ignore />
802
                                    </action>
803
                                </pluginExecution>
804
                            </pluginExecutions>
805
                        </lifecycleMappingMetadata>
806
                    </configuration>
807
                </plugin>
808
                <plugin>
809
                    <groupId>org.apache.maven.plugins</groupId>
810
                    <artifactId>maven-antrun-plugin</artifactId>
811
                    <version>1.3</version>
812
                    <dependencies>
813
                        <dependency>
814
                            <groupId>org.apache.ant</groupId>
815
                            <artifactId>ant-trax</artifactId>
816
                            <version>1.7.1</version>
817
                        </dependency>
818
                        <dependency>
819
                            <groupId>xalan</groupId>
820
                            <artifactId>xalan</artifactId>
821
                            <version>2.6.0</version>
822
                        </dependency>
823
                    </dependencies>
824
                </plugin>
825
                <plugin>
826
                    <groupId>org.apache.maven.plugins</groupId>
827
                    <artifactId>maven-clean-plugin</artifactId>
828
                    <version>2.4.1</version>
829
                </plugin>
830
                <plugin>
831
                    <groupId>org.apache.maven.plugins</groupId>
832
                    <artifactId>maven-dependency-plugin</artifactId>
833
                    <version>2.2</version>
834
                </plugin>
835
                <plugin>
836
                    <groupId>org.apache.maven.plugins</groupId>
837
                    <artifactId>maven-compiler-plugin</artifactId>
838
                    <version>2.0.2</version>
839
                    <configuration>
840
                        <source>1.5</source>
841
                        <target>1.5</target>
842
                        <encoding>ISO-8859-1</encoding>
843
                        <!--<failOnError>false</failOnError> -->
844
                    </configuration>
845
                </plugin>
846
                <plugin>
847
                    <groupId>org.apache.maven.plugins</groupId>
848
                    <artifactId>maven-resources-plugin</artifactId>
849
                    <version>2.5</version>
850
                    <configuration>
851
                        <encoding>ISO-8859-1</encoding>
852
                    </configuration>
853
                </plugin>
854
                <plugin>
855
                    <groupId>org.apache.maven.plugins</groupId>
856
                    <artifactId>maven-eclipse-plugin</artifactId>
857
                    <version>2.6</version>
858
                    <configuration>
859
                        <downloadSources>true</downloadSources>
860
                        <downloadJavadocs>true</downloadJavadocs>
861
                        <projectNameTemplate>${eclipse.project.name}</projectNameTemplate>
862
                    </configuration>
863
                </plugin>
864
                <plugin>
865
                    <groupId>org.apache.maven.plugins</groupId>
866
                    <artifactId>maven-source-plugin</artifactId>
867
                    <version>2.1.2</version>
868
                </plugin>
869
                <plugin>
870
                    <groupId>org.apache.maven.plugins</groupId>
871
                    <artifactId>maven-checkstyle-plugin</artifactId>
872
                    <version>2.6</version>
873
                </plugin>
874
                <plugin>
875
                    <groupId>org.apache.maven.plugins</groupId>
876
                    <artifactId>maven-surefire-plugin</artifactId>
877
                    <version>2.4.3</version>
878
                    <configuration>
879
                        <forkMode>once</forkMode>
880
                        <environmentVariables>
881
                            <DYLD_FRAMEWORK_PATH>${user.home}/.depman/Frameworks</DYLD_FRAMEWORK_PATH>
882
                            <DYLD_LIBRARY_PATH>${user.home}/.depman/lib</DYLD_LIBRARY_PATH>
883
                            <GDAL_DATA>${user.home}/.depman/data/gdal</GDAL_DATA>
884
                            <LD_LIBRARY_PATH>${user.home}/.depman/lib</LD_LIBRARY_PATH>
885
                            <PATH>${user.home}/.depman/bin${path.separator}${env.PATH}</PATH>
886
                            <PROJ_LIB>${gvsig.install.dir}/product/gvSIG/extensiones/org.gvsig.crs.extension/data</PROJ_LIB>
887
                        </environmentVariables>
888
                    </configuration>
889
                </plugin>
890
                <plugin>
891
                    <groupId>org.apache.maven.plugins</groupId>
892
                    <artifactId>maven-failsafe-plugin</artifactId>
893
                    <version>2.12</version>
894
                    <executions>
895
                        <execution>
896
                            <goals>
897
                                <goal>integration-test</goal>
898
                                <goal>verify</goal>
899
                            </goals>
900
                        </execution>
901
                    </executions>
902
                    <configuration>
903
                        <forkMode>once</forkMode>
904
                        <environmentVariables>
905
                            <DYLD_FRAMEWORK_PATH>${user.home}/.depman/Frameworks</DYLD_FRAMEWORK_PATH>
906
                            <DYLD_LIBRARY_PATH>${user.home}/.depman/lib</DYLD_LIBRARY_PATH>
907
                            <GDAL_DATA>${user.home}/.depman/data/gdal</GDAL_DATA>
908
                            <LD_LIBRARY_PATH>${user.home}/.depman/lib</LD_LIBRARY_PATH>
909
                            <PATH>${user.home}/.depman/bin${path.separator}${env.PATH}</PATH>
910
                            <PROJ_LIB>${gvsig.install.dir}/product/gvSIG/extensiones/org.gvsig.crs.extension/data</PROJ_LIB>
911
                        </environmentVariables>
912
                    </configuration>
913
                </plugin>
914
                <plugin>
915
                    <groupId>org.apache.maven.plugins</groupId>
916
                    <artifactId>maven-javadoc-plugin</artifactId>
917
                    <version>2.7</version>
918
                    <configuration>
919
                        <docTitle>${project.name} ${project.version}</docTitle>
920
                        <encoding>ISO-8859-1</encoding>
921
                        <footer />
922
                        <header />
923
                        <keywords>true</keywords>
924
                        <detectLinks>true</detectLinks>
925
                        <javaApiLinks>
926
                            <property>
927
                                <name>api_1.4</name>
928
                                <value>http://download.oracle.com/javase/1.4.2/docs/api/</value>
929
                            </property>
930
                            <property>
931
                                <name>api_1.5</name>
932
                                <value>http://download.oracle.com/javase/1.5.0/docs/api/</value>
933
                            </property>
934
                            <property>
935
                                <name>api_1.6</name>
936
                                <value>http://download.oracle.com/javase/6/docs/api/</value>
937
                            </property>
938
                        </javaApiLinks>
939
                    </configuration>
940
                </plugin>
941
                <plugin>
942
                    <groupId>org.apache.maven.plugins</groupId>
943
                    <artifactId>maven-site-plugin</artifactId>
944
                    <version>2.1.1</version>
945
                    <configuration>
946
                        <chmod>true</chmod>
947
                        <chmodMode>a+rwX</chmodMode>
948
                    </configuration>
949
                </plugin>
950
                <plugin>
951
                    <groupId>org.apache.maven.plugins</groupId>
952
                    <artifactId>maven-release-plugin</artifactId>
953
                    <version>2.1</version>
954
                </plugin>
955
                <plugin>
956
                    <groupId>org.apache.maven.plugins</groupId>
957
                    <artifactId>maven-jar-plugin</artifactId>
958
                    <version>2.2</version>
959
                    <configuration>
960
                        <archive>
961
                            <manifestEntries>
962
                                <Built-By>gvSIG Team</Built-By>
963
                            </manifestEntries>
964
                            <!-- <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> 
965
                                <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> -->
966
                        </archive>
967
                    </configuration>
968
                </plugin>
969
                <plugin>
970
                    <groupId>org.codehaus.mojo</groupId>
971
                    <artifactId>exec-maven-plugin</artifactId>
972
                    <version>1.2</version>
973
                </plugin>
974
                <plugin>
975
                    <groupId>org.codehaus.mojo</groupId>
976
                    <artifactId>properties-maven-plugin</artifactId>
977
                    <version>1.0-alpha-2</version>
978
                </plugin>
979
                <plugin>
980
                    <groupId>org.codehaus.mojo</groupId>
981
                    <artifactId>animal-sniffer-maven-plugin</artifactId>
982
                    <version>1.7</version>
983
                </plugin>
984
                <plugin>
985
                    <groupId>com.mycila.maven-license-plugin</groupId>
986
                    <artifactId>maven-license-plugin</artifactId>
987
                    <version>1.10.b1</version>
988
                </plugin>
989
            </plugins>
990
        </pluginManagement>
991
        <plugins>
992
            <plugin>
993
                <groupId>org.apache.maven.plugins</groupId>
994
                <artifactId>maven-checkstyle-plugin</artifactId>
995
                <dependencies>
996
                    <!-- <dependency> <groupId>checkstyle</groupId> <artifactId>checkstyle</artifactId> 
997
                        <version>5.0</version> </dependency> -->
998
                    <dependency>
999
                        <groupId>org.gvsig</groupId>
1000
                        <artifactId>org.gvsig.maven.base.tools</artifactId>
1001
                        <version>1.0.9-SNAPSHOT</version>
1002
                    </dependency>
1003
                </dependencies>
1004
            </plugin>
1005
            <plugin>
1006
                <groupId>org.apache.maven.plugins</groupId>
1007
                <artifactId>maven-dependency-plugin</artifactId>
1008
                <executions>
1009
                    <execution>
1010
                        <id>unpack-build-tools</id>
1011
                        <phase>generate-sources</phase>
1012
                        <goals>
1013
                            <goal>unpack-dependencies</goal>
1014
                        </goals>
1015
                        <configuration>
1016
                            <includeArtifactIds>org.gvsig.maven.base.tools</includeArtifactIds>
1017
                            <outputDirectory>${project.build.directory}/org.gvsig.maven.base.tools</outputDirectory>
1018
                            <overWriteIfNewer>true</overWriteIfNewer>
1019
                            <overWriteReleases>false</overWriteReleases>
1020
                            <overWriteSnapshots>true</overWriteSnapshots>
1021
                        </configuration>
1022
                    </execution>
1023
                </executions>
1024
            </plugin>
1025
            <plugin>
1026
                <groupId>org.apache.maven.plugins</groupId>
1027
                <artifactId>maven-source-plugin</artifactId>
1028
                <executions>
1029
                    <execution>
1030
                        <id>attach-sources</id>
1031
                        <phase>verify</phase>
1032
                        <goals>
1033
                            <goal>jar-no-fork</goal>
1034
                        </goals>
1035
                    </execution>
1036
                    <execution>
1037
                        <id>attach-test-sources</id>
1038
                        <phase>verify</phase>
1039
                        <goals>
1040
                            <goal>test-jar-no-fork</goal>
1041
                        </goals>
1042
                    </execution>
1043
                </executions>
1044
            </plugin>
1045
            <plugin>
1046
                <groupId>org.codehaus.mojo</groupId>
1047
                <artifactId>animal-sniffer-maven-plugin</artifactId>
1048
                <executions>
1049
                    <execution>
1050
                        <id>check-java-api</id>
1051
                        <phase>package</phase>
1052
                        <goals>
1053
                            <goal>check</goal>
1054
                        </goals>
1055
                        <configuration>
1056
                            <signature>
1057
                                <groupId>org.codehaus.mojo.signature</groupId>
1058
                                <artifactId>java15</artifactId>
1059
                                <version>1.0</version>
1060
                            </signature>
1061
                            <ignores>
1062
                                <ignore>net.sourceforge.cobertura.coveragedata.TouchCollector</ignore>
1063
                            </ignores>
1064
                        </configuration>
1065
                    </execution>
1066
                </executions>
1067
            </plugin>
1068
            <plugin>
1069
                <groupId>com.mycila.maven-license-plugin</groupId>
1070
                <artifactId>maven-license-plugin</artifactId>
1071
                <configuration>
1072
                    <header>gvsig.header</header>
1073
                    <strictCheck>true</strictCheck>
1074
                    <encoding>ISO-8859-1</encoding>
1075
                    <mapping>
1076
                        <pom>XML_STYLE</pom>
1077
                    </mapping>
1078
                    <excludes>
1079
                        <exclude>**/CMakeLists.txt</exclude>
1080
                        <exclude>**/buildNumber.properties</exclude>
1081
                    </excludes>
1082
                </configuration>
1083
                <dependencies>
1084
                    <dependency>
1085
                        <groupId>org.gvsig</groupId>
1086
                        <artifactId>org.gvsig.maven.base.tools</artifactId>
1087
                        <version>1.0.9-SNAPSHOT</version>
1088
                    </dependency>
1089
                </dependencies>
1090
            </plugin>
1091
        </plugins>
1092
    </build>
1093
    <profiles>
1094
        <profile>
1095
            <id>release</id>
1096
            <activation>
1097
                <activeByDefault>true</activeByDefault>
1098
            </activation>
1099
            <build>
1100
                <plugins>
1101
                    <plugin>
1102
                        <groupId>org.apache.maven.plugins</groupId>
1103
                        <artifactId>maven-javadoc-plugin</artifactId>
1104

    
1105
                        <executions>
1106
                            <execution>
1107
                                <id>attach-javadocs</id>
1108
                                <goals>
1109
                                    <goal>jar</goal>
1110
                                </goals>
1111
                            </execution>
1112
                        </executions>
1113
                    </plugin>
1114
                </plugins>
1115
            </build>
1116
        </profile>
1117

    
1118
        <profile>
1119
            <id>windows-profile</id>
1120
            <activation>
1121
                <os>
1122
                    <family>windows</family>
1123
                </os>
1124
            </activation>
1125
            <build>
1126
                <plugins>
1127
                    <plugin>
1128
                        <groupId>org.apache.maven.plugins</groupId>
1129
                        <artifactId>maven-dependency-plugin</artifactId>
1130
                        <executions>
1131
                            <execution>
1132
                                <id>unpack-dependencies</id>
1133
                                <phase>generate-sources</phase>
1134
                                <goals>
1135
                                    <goal>unpack-dependencies</goal>
1136
                                </goals>
1137
                                <configuration>
1138
                                    <includeTypes>tar.gz</includeTypes>
1139
                                    <outputDirectory>${user.home}/.depman</outputDirectory>
1140
                                    <overWriteReleases>true</overWriteReleases>
1141
                                    <overWriteSnapshots>true</overWriteSnapshots>
1142
                                </configuration>
1143
                            </execution>
1144
                        </executions>
1145
                    </plugin>
1146
                </plugins>
1147
            </build>
1148
        </profile>
1149
        <profile>
1150
            <id>linux-profile</id>
1151
            <activation>
1152
                <os>
1153
                    <family>linux</family>
1154
                </os>
1155
            </activation>
1156
            <build>
1157
                <plugins>
1158
                    <plugin>
1159
                        <groupId>org.apache.maven.plugins</groupId>
1160
                        <artifactId>maven-dependency-plugin</artifactId>
1161
                        <executions>
1162
                            <execution>
1163
                                <id>copy-dependencies</id>
1164
                                <phase>generate-sources</phase>
1165
                                <goals>
1166
                                    <goal>copy-dependencies</goal>
1167
                                </goals>
1168
                                <configuration>
1169
                                    <includeTypes>tar.gz</includeTypes>
1170
                                    <outputDirectory>${user.home}/.depman/orig</outputDirectory>
1171
                                    <overWriteIfNewer>true</overWriteIfNewer>
1172
                                </configuration>
1173
                            </execution>
1174
                        </executions>
1175
                    </plugin>
1176
                    <plugin>
1177
                        <groupId>org.codehaus.mojo</groupId>
1178
                        <artifactId>exec-maven-plugin</artifactId>
1179
                        <executions>
1180
                            <execution>
1181
                                <id>unpack-dependencies</id>
1182
                                <phase>generate-sources</phase>
1183
                                <goals>
1184
                                    <goal>exec</goal>
1185
                                </goals>
1186
                                <configuration>
1187
                                    <executable>sh</executable>
1188
                                    <arguments>
1189
                                        <argument>${project.build.directory}/org.gvsig.maven.base.tools/bash/unpack-dependencies.sh</argument>
1190
                                        <argument>${user.home}/.depman/orig</argument>
1191
                                        <argument>${user.home}/.depman</argument>
1192
                                    </arguments>
1193
                                </configuration>
1194
                            </execution>
1195
                        </executions>
1196
                    </plugin>
1197
                </plugins>
1198
            </build>
1199
        </profile>
1200
        <profile>
1201
            <id>mac-profile</id>
1202
            <activation>
1203
                <os>
1204
                    <family>mac</family>
1205
                </os>
1206
            </activation>
1207
            <build>
1208
                <plugins>
1209
                    <plugin>
1210
                        <groupId>org.apache.maven.plugins</groupId>
1211
                        <artifactId>maven-dependency-plugin</artifactId>
1212
                        <executions>
1213
                            <execution>
1214
                                <id>copy-dependencies</id>
1215
                                <phase>generate-sources</phase>
1216
                                <goals>
1217
                                    <goal>copy-dependencies</goal>
1218
                                </goals>
1219
                                <configuration>
1220
                                    <includeTypes>tar.gz</includeTypes>
1221
                                    <outputDirectory>${user.home}/.depman/orig</outputDirectory>
1222
                                    <overWriteIfNewer>true</overWriteIfNewer>
1223
                                </configuration>
1224
                            </execution>
1225
                        </executions>
1226
                    </plugin>
1227
                    <plugin>
1228
                        <groupId>org.codehaus.mojo</groupId>
1229
                        <artifactId>exec-maven-plugin</artifactId>
1230
                        <executions>
1231
                            <execution>
1232
                                <id>unpack-dependencies</id>
1233
                                <phase>generate-sources</phase>
1234
                                <goals>
1235
                                    <goal>exec</goal>
1236
                                </goals>
1237
                                <configuration>
1238
                                    <executable>sh</executable>
1239
                                    <arguments>
1240
                                        <argument>${project.build.directory}/org.gvsig.maven.base.tools/bash/unpack-dependencies.sh</argument>
1241
                                        <argument>${user.home}/.depman/orig</argument>
1242
                                        <argument>${user.home}/.depman</argument>
1243
                                    </arguments>
1244
                                </configuration>
1245
                            </execution>
1246
                        </executions>
1247
                    </plugin>
1248
                </plugins>
1249
            </build>
1250
        </profile>
1251
        <profile>
1252
            <id>eclipse-project</id>
1253
            <build>
1254
                <defaultGoal>eclipse:eclipse</defaultGoal>
1255
            </build>
1256
        </profile>
1257
    </profiles>
1258
    <reporting>
1259
        <plugins>
1260
            <plugin>
1261
                <groupId>org.apache.maven.plugins</groupId>
1262
                <artifactId>maven-checkstyle-plugin</artifactId>
1263
                <version>2.6</version>
1264
                <configuration>
1265
                    <configLocation>checkstyle/checkstyle_gvsig.xml</configLocation>
1266
                    <headerLocation>checkstyle/gvsig.header</headerLocation>
1267
                    <propertyExpansion>
1268
                        basedir=${basedir}
1269
                    </propertyExpansion>
1270
                </configuration>
1271
            </plugin>
1272
            <plugin>
1273
                <groupId>org.apache.maven.plugins</groupId>
1274
                <artifactId>maven-javadoc-plugin</artifactId>
1275
                <version>2.7</version>
1276
                <configuration>
1277
                    <docTitle>${project.name} ${project.version}</docTitle>
1278
                    <encoding>ISO-8859-1</encoding>
1279
                    <footer />
1280
                    <header />
1281
                    <keywords>true</keywords>
1282
                    <detectLinks>true</detectLinks>
1283
                    <javaApiLinks>
1284
                        <property>
1285
                            <name>api_1.4</name>
1286
                            <value>http://download.oracle.com/javase/1.4.2/docs/api/</value>
1287
                        </property>
1288
                        <property>
1289
                            <name>api_1.5</name>
1290
                            <value>http://download.oracle.com/javase/1.5.0/docs/api/</value>
1291
                        </property>
1292
                        <property>
1293
                            <name>api_1.6</name>
1294
                            <value>http://download.oracle.com/javase/6/docs/api/</value>
1295
                        </property>
1296
                    </javaApiLinks>
1297
                </configuration>
1298
            </plugin>
1299
            <plugin>
1300
                <groupId>org.apache.maven.plugins</groupId>
1301
                <artifactId>maven-jxr-plugin</artifactId>
1302
                <version>2.2</version>
1303
            </plugin>
1304
            <plugin>
1305
                <groupId>org.apache.maven.plugins</groupId>
1306
                <artifactId>maven-pmd-plugin</artifactId>
1307
                <version>2.5</version>
1308
                <configuration>
1309
                    <targetJdk>1.5</targetJdk>
1310
                </configuration>
1311
            </plugin>
1312
            <!-- CHANGES & CHANGELOG PLUGINS <plugin> <groupId>org.apache.maven.plugins</groupId> 
1313
                <artifactId>maven-changelog-plugin</artifactId> <configuration> <type>range</type> 
1314
                <range>60</range> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> 
1315
                <artifactId>maven-changes-plugin</artifactId> <reportSets> <reportSet> <reports> 
1316
                <report>changes-report</report> </reports> </reportSet> </reportSets> <configuration> 
1317
                <issueLinkTemplate> https://gvsig.org/trac/gvSIG/ticket/%ISSUE% </issueLinkTemplate> 
1318
                </configuration> </plugin> -->
1319
            <plugin>
1320
                <groupId>org.codehaus.mojo</groupId>
1321
                <artifactId>javancss-maven-plugin</artifactId>
1322
                <version>2.0</version>
1323
            </plugin>
1324
            <plugin>
1325
                <groupId>org.apache.maven.plugins</groupId>
1326
                <artifactId>maven-surefire-report-plugin</artifactId>
1327
                <version>2.6</version>
1328
                <reportSets>
1329
                    <reportSet>
1330
                        <id>integration-tests</id>
1331
                        <reports>
1332
                            <report>failsafe-report-only</report>
1333
                        </reports>
1334
                    </reportSet>
1335
                </reportSets>
1336
            </plugin>
1337
            <plugin>
1338
                <groupId>org.codehaus.mojo</groupId>
1339
                <artifactId>cobertura-maven-plugin</artifactId>
1340
                <version>2.4</version>
1341
            </plugin>
1342
            <plugin>
1343
                <groupId>org.codehaus.mojo</groupId>
1344
                <artifactId>findbugs-maven-plugin</artifactId>
1345
                <version>2.3.1</version>
1346
                <configuration>
1347
                    <threshold>Normal</threshold>
1348
                    <effort>Default</effort>
1349
                    <!-- <threshold>High|Normal|Low|Exp|Ignore</threshold> 
1350
                        <effort>Min|Default|Max</effort> <xmlOutput>true|false</xmlOutput> <xmlOutputDirectory>directory 
1351
                        location of findbugs xdoc xml report</xmlOutputDirectory> <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> 
1352
                        <includeFilterFile>findbugs-include.xml</includeFilterFile> <visitors>FindDeadLocalStores,UnreadFields</visitors> 
1353
                        <omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors> <onlyAnalyze>org.codehaus.mojo.findbugs.*</onlyAnalyze> 
1354
                        <pluginList>/libs/fb-contrib/fb-contrib-2.8.0.jar</pluginList> <debug>true|false</debug> 
1355
                        <relaxed>true|false</relaxed> <findbugsXmlOutput>true|false</findbugsXmlOutput> 
1356
                        <findbugsXmlOutputDirectory>directory location of findbugs legact xml format 
1357
                        report</findbugsXmlOutputDirectory> -->
1358
                </configuration>
1359
            </plugin>
1360
            <plugin>
1361
                <groupId>org.codehaus.mojo</groupId>
1362
                <artifactId>taglist-maven-plugin</artifactId>
1363
                <version>2.4</version>
1364
                <configuration>
1365
                    <tagListOptions>
1366
                        <tagClasses>
1367
                            <tagClass>
1368
                                <displayName>Todo Work</displayName>
1369
                                <tags>
1370
                                    <tag>
1371
                                        <matchString>todo</matchString>
1372
                                        <matchType>ignoreCase</matchType>
1373
                                    </tag>
1374
                                    <tag>
1375
                                        <matchString>FIXME</matchString>
1376
                                        <matchType>exact</matchType>
1377
                                    </tag>
1378
                                </tags>
1379
                            </tagClass>
1380
                            <tagClass>
1381
                                <displayName>Javadoc todo Work</displayName>
1382
                                <tags>
1383
                                    <tag>
1384
                                        <matchString>DOCUMENT ME</matchString>
1385
                                        <matchType>ignoreCase</matchType>
1386
                                    </tag>
1387
                                </tags>
1388
                            </tagClass>
1389
                            <tagClass>
1390
                                <displayName>Deprecated</displayName>
1391
                                <tags>
1392
                                    <tag>
1393
                                        <matchString>@deprecated</matchString>
1394
                                        <matchType>exact</matchType>
1395
                                    </tag>
1396
                                </tags>
1397
                            </tagClass>
1398
                        </tagClasses>
1399
                    </tagListOptions>
1400
                </configuration>
1401
            </plugin>
1402
        </plugins>
1403
    </reporting>
1404
</project>