Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?><project>
2
  <parent>
3
    <artifactId>geoserver</artifactId>
4
    <groupId>org.geoserver</groupId>
5
    <version>1.4.0-M1</version>
6
  </parent>
7
  <modelVersion>4.0.0</modelVersion>
8
  <groupId>org.geoserver</groupId>
9
  <artifactId>web</artifactId>
10
  <name>Web Application Module</name>
11
  <version>1.4.0-M1</version>
12
  <inceptionYear>2005</inceptionYear>
13
  <licenses>
14
    <license>
15
      <name>Lesser General Public License (LGPL)</name>
16
      <url>http://www.gnu.org/copyleft/lesser.txt</url>
17
      <distribution>repo</distribution>
18
    </license>
19
  </licenses>
20
  <organization>
21
    <name>The Open Planning Project</name>
22
    <url>http://www.openplans.org</url>
23
  </organization>
24
  <build>
25
    <sourceDirectory>c:\devel\geoserver\trunk\web\src\main\java</sourceDirectory>
26
    <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
27
    <testSourceDirectory>c:\devel\geoserver\trunk\web\src\test\java</testSourceDirectory>
28
    <outputDirectory>c:\devel\geoserver\trunk\web\target\classes</outputDirectory>
29
    <testOutputDirectory>c:\devel\geoserver\trunk\web\target\test-classes</testOutputDirectory>
30
    <resources>
31
      <resource>
32
        <directory>c:\devel\geoserver\trunk\web/src/main/java</directory>
33
        <includes>
34
          <include>**/*.txt</include>
35
          <include>**/*.sql</include>
36
          <include>**/*.xml</include>
37
          <include>**/*.utf</include>
38
          <include>**/*.properties</include>
39
          <include>**/*.serialized</include>
40
          <include>META-INF/*.jai</include>
41
          <include>META-INF/services/**</include>
42
          <include>applicationContext.xml</include>
43
        </includes>
44
        <excludes>
45
          <exclude>**/doc-files/**</exclude>
46
          <exclude>org/geotools/resources/i18n/**/*.properties</exclude>
47
        </excludes>
48
      </resource>
49
    </resources>
50
    <testResources>
51
      <testResource>
52
        <directory>c:\devel\geoserver\trunk\web/src/test/java</directory>
53
        <includes>
54
          <include>META-INF/services/**</include>
55
          <include>**/test-data/**</include>
56
          <include>**/*.xml</include>
57
          <include>**/*.xsd</include>
58
          <include>**/*.csv</include>
59
          <include>**/*.sld</include>
60
          <include>**/*.svg</include>
61
          <include>**/*.gml</include>
62
          <include>**/*.wkt</include>
63
          <include>**/*.txt</include>
64
          <include>**/*.sql</include>
65
          <include>**/*.png</include>
66
          <include>**/*.properties</include>
67
          <include>**/*.serialized</include>
68
        </includes>
69
        <excludes>
70
          <exclude>**/doc-files/**</exclude>
71
        </excludes>
72
      </testResource>
73
    </testResources>
74
    <directory>c:\devel\geoserver\trunk\web\target</directory>
75
    <finalName>web-1.4.0-M1</finalName>
76
    <plugins>
77
      <plugin>
78
        <artifactId>maven-surefire-plugin</artifactId>
79
        <version>2.2</version>
80
        <configuration>
81
          <source>1.4</source>
82
          <target>1.4</target>
83
          <includes>
84
            <include>**/*Test.java</include>
85
          </includes>
86
          <excludes>
87
            <exclude>**/*OnlineTest.java</exclude>
88
          </excludes>
89
          <forkMode>once</forkMode>
90
          <argLine>-Xmx512M -enableassertions</argLine>
91
          <printSummary>false</printSummary>
92
          <testFailureIgnore>${allow.test.failure.ignore}</testFailureIgnore>
93
        </configuration>
94
      </plugin>
95
      <plugin>
96
        <artifactId>maven-assembly-plugin</artifactId>
97
        <version>2.1</version>
98
        <configuration>
99
          <descriptors>
100
            <descriptor>release/src.xml</descriptor>
101
            <descriptor>release/war.xml</descriptor>
102
            <descriptor>release/javadoc.xml</descriptor>
103
            <descriptor>release/bin.xml</descriptor>
104
            <descriptor>release/doc.xml</descriptor>
105
          </descriptors>
106
          <finalName>geoserver-1.4.0-M1</finalName>
107
          <outputDirectory>${project.build.directory}/release</outputDirectory>
108
        </configuration>
109
      </plugin>
110
      <plugin>
111
        <groupId>org.codehaus.mojo</groupId>
112
        <artifactId>cobertura-maven-plugin</artifactId>
113
        <version>2.0</version>
114
        <executions>
115
          <execution>
116
            <goals>
117
              <goal>clean</goal>
118
            </goals>
119
          </execution>
120
        </executions>
121
      </plugin>
122
      <plugin>
123
        <groupId>org.mortbay.jetty</groupId>
124
        <artifactId>maven-jetty6-plugin</artifactId>
125
        <version>6.0.0beta16</version>
126
        <configuration>
127
          <contextPath>geoserver</contextPath>
128
          <webApp>${project.build.directory}/geoserver</webApp>
129
        </configuration>
130
      </plugin>
131
      <plugin>
132
        <groupId>org.geoserver.maven</groupId>
133
        <artifactId>config</artifactId>
134
        <version>1.4.0-M1</version>
135
        <executions>
136
          <execution>
137
            <id>configPackage</id>
138
            <phase>package</phase>
139
            <goals>
140
              <goal>config</goal>
141
            </goals>
142
            <configuration>
143
              <configId>release</configId>
144
            </configuration>
145
          </execution>
146
          <execution>
147
            <id>configClean</id>
148
            <phase>clean</phase>
149
            <goals>
150
              <goal>clean</goal>
151
            </goals>
152
          </execution>
153
        </executions>
154
      </plugin>
155
      <plugin>
156
        <artifactId>maven-war-plugin</artifactId>
157
        <version>2.0-beta-2</version>
158
        <executions>
159
          <execution>
160
            <phase>install</phase>
161
            <goals>
162
              <goal>war</goal>
163
            </goals>
164
          </execution>
165
        </executions>
166
        <inherited>true</inherited>
167
        <configuration>
168
          <warName>geoserver</warName>
169
          <webappDirectory>${project.build.directory}/geoserver</webappDirectory>
170
        </configuration>
171
      </plugin>
172
      <plugin>
173
        <artifactId>maven-clean-plugin</artifactId>
174
        <version>2.1</version>
175
      </plugin>
176
      <plugin>
177
        <artifactId>maven-resources-plugin</artifactId>
178
        <version>2.1</version>
179
      </plugin>
180
      <plugin>
181
        <artifactId>maven-compiler-plugin</artifactId>
182
        <version>2.0.1</version>
183
      </plugin>
184
      <plugin>
185
        <artifactId>maven-jar-plugin</artifactId>
186
        <version>2.0</version>
187
      </plugin>
188
      <plugin>
189
        <artifactId>maven-install-plugin</artifactId>
190
        <version>2.1</version>
191
      </plugin>
192
    </plugins>
193
  </build>
194
  <repositories>
195
    <repository>
196
      <snapshots>
197
        <enabled>false</enabled>
198
      </snapshots>
199
      <id>ibiblio</id>
200
      <name>Ibiblio - the public's library and digital archive</name>
201
      <url>http://www.ibiblio.org/maven2</url>
202
    </repository>
203
    <repository>
204
      <snapshots>
205
        <enabled>false</enabled>
206
      </snapshots>
207
      <id>geotools</id>
208
      <name>Repository serving Geotools libraries built against
209
				2.2.x branch</name>
210
      <url>http://maven.geotools.fr/repository/</url>
211
      <layout>legacy</layout>
212
    </repository>
213
    <repository>
214
      <snapshots />
215
      <id>refractions</id>
216
      <name>Repository from Refractions research, Victoria, Canada</name>
217
      <url>http://lists.refractions.net/m2/</url>
218
    </repository>
219
    <repository>
220
      <snapshots>
221
        <enabled>false</enabled>
222
      </snapshots>
223
      <id>codehaus</id>
224
      <name>Repository serving Geoserver libraries hosted by
225
				Codehaus</name>
226
      <url>http://dist.codehaus.org/geoserver</url>
227
      <layout>legacy</layout>
228
    </repository>
229
    <repository>
230
      <snapshots>
231
        <enabled>false</enabled>
232
      </snapshots>
233
      <id>espace</id>
234
      <name>Repository from the Sicade laboratory in New-Caledonia</name>
235
      <url>http://maven.espace.ird.nc</url>
236
    </repository>
237
    <repository>
238
      <snapshots>
239
        <enabled>false</enabled>
240
      </snapshots>
241
      <id>central</id>
242
      <name>Maven Repository Switchboard</name>
243
      <url>http://repo1.maven.org/maven2</url>
244
    </repository>
245
  </repositories>
246
  <pluginRepositories>
247
    <pluginRepository>
248
      <snapshots />
249
      <id>mortbay-repo</id>
250
      <name>mortbay-repo</name>
251
      <url>http://www.mortbay.org/maven2/snapshot</url>
252
    </pluginRepository>
253
    <pluginRepository>
254
      <releases>
255
        <enabled>false</enabled>
256
      </releases>
257
      <snapshots />
258
      <id>codehaus-snapshot-plugins</id>
259
      <name>codehaus-shapshot-plugins</name>
260
      <url>http://snapshots.repository.codehaus.org/</url>
261
    </pluginRepository>
262
    <pluginRepository>
263
      <releases>
264
        <updatePolicy>never</updatePolicy>
265
      </releases>
266
      <snapshots>
267
        <enabled>false</enabled>
268
      </snapshots>
269
      <id>central</id>
270
      <name>Maven Plugin Repository</name>
271
      <url>http://repo1.maven.org/maven2</url>
272
    </pluginRepository>
273
  </pluginRepositories>
274
  <dependencies>
275
    <dependency>
276
      <groupId>javax.servlet</groupId>
277
      <artifactId>servlet-api</artifactId>
278
      <version>2.4</version>
279
      <scope>provided</scope>
280
    </dependency>
281
    <dependency>
282
      <groupId>org.geotools</groupId>
283
      <artifactId>gt2-shapefile</artifactId>
284
      <version>2.2.0</version>
285
      <scope>compile</scope>
286
    </dependency>
287
    <dependency>
288
      <groupId>commons-digester</groupId>
289
      <artifactId>commons-digester</artifactId>
290
      <version>1.7</version>
291
      <scope>compile</scope>
292
    </dependency>
293
    <dependency>
294
      <groupId>xalan</groupId>
295
      <artifactId>xalan</artifactId>
296
      <version>2.7.0</version>
297
      <scope>compile</scope>
298
    </dependency>
299
    <dependency>
300
      <groupId>commons-validator</groupId>
301
      <artifactId>commons-validator</artifactId>
302
      <version>1.1.4</version>
303
      <scope>compile</scope>
304
    </dependency>
305
    <dependency>
306
      <groupId>commons-fileupload</groupId>
307
      <artifactId>commons-fileupload</artifactId>
308
      <version>1.0</version>
309
      <scope>compile</scope>
310
    </dependency>
311
    <dependency>
312
      <groupId>org.geoserver</groupId>
313
      <artifactId>data</artifactId>
314
      <version>1.4.0-M1</version>
315
      <scope>compile</scope>
316
    </dependency>
317
    <dependency>
318
      <groupId>org.geoserver</groupId>
319
      <artifactId>wms</artifactId>
320
      <version>1.4.0-M1</version>
321
      <scope>compile</scope>
322
    </dependency>
323
    <dependency>
324
      <groupId>commons-httpclient</groupId>
325
      <artifactId>commons-httpclient</artifactId>
326
      <version>2.0</version>
327
      <scope>compile</scope>
328
    </dependency>
329
    <dependency>
330
      <groupId>xml-apis</groupId>
331
      <artifactId>xml-apis</artifactId>
332
      <version>1.0.b2</version>
333
      <scope>compile</scope>
334
    </dependency>
335
    <dependency>
336
      <groupId>lucene</groupId>
337
      <artifactId>lucene</artifactId>
338
      <version>1.4.3</version>
339
      <scope>compile</scope>
340
    </dependency>
341
    <dependency>
342
      <groupId>org.geoserver</groupId>
343
      <artifactId>wfs</artifactId>
344
      <version>1.4.0-M1</version>
345
      <scope>compile</scope>
346
    </dependency>
347
    <dependency>
348
      <groupId>org.geotools</groupId>
349
      <artifactId>gt2-validation</artifactId>
350
      <version>2.2.0</version>
351
      <scope>compile</scope>
352
    </dependency>
353
    <dependency>
354
      <groupId>org.springframework</groupId>
355
      <artifactId>spring-core</artifactId>
356
      <version>1.2.5</version>
357
      <scope>compile</scope>
358
    </dependency>
359
    <dependency>
360
      <groupId>org.geoserver</groupId>
361
      <artifactId>platform</artifactId>
362
      <version>1.4.0-M1</version>
363
      <scope>compile</scope>
364
    </dependency>
365
    <dependency>
366
      <groupId>commons-lang</groupId>
367
      <artifactId>commons-lang</artifactId>
368
      <version>2.1</version>
369
      <scope>compile</scope>
370
    </dependency>
371
    <dependency>
372
      <groupId>org.springframework</groupId>
373
      <artifactId>spring-beans</artifactId>
374
      <version>1.2.5</version>
375
      <scope>compile</scope>
376
    </dependency>
377
    <dependency>
378
      <groupId>org.geoserver</groupId>
379
      <artifactId>main</artifactId>
380
      <version>1.4.0-M1</version>
381
      <scope>compile</scope>
382
    </dependency>
383
    <dependency>
384
      <groupId>log4j</groupId>
385
      <artifactId>log4j</artifactId>
386
      <version>1.2.9</version>
387
      <scope>compile</scope>
388
    </dependency>
389
    <dependency>
390
      <groupId>org.geotools</groupId>
391
      <artifactId>gt2-api</artifactId>
392
      <version>2.2.0</version>
393
      <scope>compile</scope>
394
    </dependency>
395
    <dependency>
396
      <groupId>org.geotools</groupId>
397
      <artifactId>gt2-main</artifactId>
398
      <version>2.2.0</version>
399
      <scope>compile</scope>
400
    </dependency>
401
    <dependency>
402
      <groupId>commons-beanutils</groupId>
403
      <artifactId>commons-beanutils</artifactId>
404
      <version>1.7.0</version>
405
      <scope>compile</scope>
406
    </dependency>
407
    <dependency>
408
      <groupId>xerces</groupId>
409
      <artifactId>xercesImpl</artifactId>
410
      <version>2.4.0</version>
411
      <scope>compile</scope>
412
    </dependency>
413
    <dependency>
414
      <groupId>struts</groupId>
415
      <artifactId>struts</artifactId>
416
      <version>1.2.9</version>
417
      <scope>compile</scope>
418
    </dependency>
419
    <dependency>
420
      <groupId>oro</groupId>
421
      <artifactId>oro</artifactId>
422
      <version>2.0.8</version>
423
      <scope>compile</scope>
424
    </dependency>
425
    <dependency>
426
      <groupId>org.springframework</groupId>
427
      <artifactId>spring-context</artifactId>
428
      <version>1.2.5</version>
429
      <scope>compile</scope>
430
    </dependency>
431
    <dependency>
432
      <groupId>org.geoserver</groupId>
433
      <artifactId>validation</artifactId>
434
      <version>1.4.0-M1</version>
435
      <scope>compile</scope>
436
    </dependency>
437
  </dependencies>
438
  <reporting>
439
    <outputDirectory>target/site</outputDirectory>
440
    <plugins>
441
      <plugin>
442
        <artifactId>maven-javadoc-plugin</artifactId>
443
        <configuration>
444
          <source>1.4</source>
445
          <version>false</version>
446
          <noqualifier>all</noqualifier>
447
          <quiet>true</quiet>
448
          <maxmemory>512M</maxmemory>
449
          <encoding>ISO-8859-1</encoding>
450
          <aggregate>true</aggregate>
451
          <additionalparam>-keywords</additionalparam>
452
          <excludePackageNames>org.geotools.resources</excludePackageNames>
453
          <tags>
454
            <tag>
455
              <name>todo</name>
456
              <placement>tfmc</placement>
457
              <head>TODO:</head>
458
            </tag>
459
            <tag>
460
              <name>task</name>
461
              <placement>tfmc</placement>
462
              <head>TODO:</head>
463
            </tag>
464
            <tag>
465
              <name>revisit</name>
466
              <placement>tfmc</placement>
467
              <head>TODO:</head>
468
            </tag>
469
            <tag>
470
              <name>source</name>
471
              <placement>Xt</placement>
472
              <head>Source:</head>
473
            </tag>
474
            <tag>
475
              <name>tutorial</name>
476
              <placement>Xt</placement>
477
              <head>Tutorial:</head>
478
            </tag>
479
          </tags>
480
          <links>
481
            <link>http://java.sun.com/j2se/1.5/docs/api</link>
482
            <link>http://java.sun.com/j2ee/1.4/docs/api</link>
483
            <link>http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs</link>
484
            <link>http://java.sun.com/products/java-media/3D/forDevelopers/j3dapi</link>
485
            <link>http://jsr-108.sourceforge.net/javadoc</link>
486
            <link>http://geoapi.sourceforge.net/snapshot/javadoc</link>
487
            <link>http://geoapi.sourceforge.net/pending/javadoc</link>
488
            <link>http://geoapi.sourceforge.net/legacy/javadoc</link>
489
            <link>http://www.jump-project.org/docs/jts/1.7/api</link>
490
            <link>http://www.geotools.fr/javadoc/2.2/</link>
491
            <link>http://xmlgraphics.apache.org/batik/javadoc</link>
492
            <link>http://itextdocs.lowagie.com/docs</link>
493
          </links>
494
        </configuration>
495
      </plugin>
496
      <plugin>
497
        <artifactId>maven-project-info-reports-plugin</artifactId>
498
      </plugin>
499
      <plugin>
500
        <artifactId>maven-site-plugin</artifactId>
501
      </plugin>
502
      <plugin>
503
        <artifactId>maven-surefire-report-plugin</artifactId>
504
        <configuration>
505
          <linkXRef>true</linkXRef>
506
        </configuration>
507
      </plugin>
508
      <plugin>
509
        <groupId>org.codehaus.mojo</groupId>
510
        <artifactId>cobertura-maven-plugin</artifactId>
511
      </plugin>
512
      <plugin>
513
        <groupId>org.codehaus.mojo</groupId>
514
        <artifactId>jxr-maven-plugin</artifactId>
515
        <configuration>
516
          <aggregate>true</aggregate>
517
        </configuration>
518
      </plugin>
519
      <plugin>
520
        <groupId>org.codehaus.mojo</groupId>
521
        <artifactId>taglist-maven-plugin</artifactId>
522
        <configuration>
523
          <tags>
524
            <tag>@revisit</tag>
525
            <tag>@todo</tag>
526
            <tag>TODO</tag>
527
            <tag>FIXME</tag>
528
          </tags>
529
        </configuration>
530
      </plugin>
531
    </plugins>
532
  </reporting>
533
  <dependencyManagement>
534
    <dependencies>
535
      <dependency>
536
        <groupId>org.geotools</groupId>
537
        <artifactId>gt2</artifactId>
538
        <version>2.2.0</version>
539
      </dependency>
540
      <dependency>
541
        <groupId>org.geotools</groupId>
542
        <artifactId>gt2-api</artifactId>
543
        <version>2.2.0</version>
544
      </dependency>
545
      <dependency>
546
        <groupId>org.geotools</groupId>
547
        <artifactId>gt2-main</artifactId>
548
        <version>2.2.0</version>
549
      </dependency>
550
      <dependency>
551
        <groupId>org.geotools</groupId>
552
        <artifactId>gt2-shapefile</artifactId>
553
        <version>2.2.0</version>
554
      </dependency>
555
      <dependency>
556
        <groupId>org.geotools</groupId>
557
        <artifactId>gt2-validation</artifactId>
558
        <version>2.2.0</version>
559
      </dependency>
560
      <dependency>
561
        <groupId>org.geotools</groupId>
562
        <artifactId>gt2-render</artifactId>
563
        <version>2.2.0</version>
564
      </dependency>
565
      <dependency>
566
        <groupId>org.geotools</groupId>
567
        <artifactId>gt2-demo-property</artifactId>
568
        <version>2.2.0</version>
569
      </dependency>
570
      <dependency>
571
        <groupId>org.geotools</groupId>
572
        <artifactId>gt2-epsg-wkt</artifactId>
573
        <version>2.2.0</version>
574
      </dependency>
575
      <dependency>
576
        <groupId>org.geotools</groupId>
577
        <artifactId>gt2-epsg-hsql</artifactId>
578
        <version>2.2.0</version>
579
      </dependency>
580
      <dependency>
581
        <groupId>junit</groupId>
582
        <artifactId>junit</artifactId>
583
        <version>3.8.1</version>
584
      </dependency>
585
      <dependency>
586
        <groupId>httpunit</groupId>
587
        <artifactId>httpunit</artifactId>
588
        <version>1.6</version>
589
      </dependency>
590
      <dependency>
591
        <groupId>xml-apis</groupId>
592
        <artifactId>xml-apis</artifactId>
593
        <version>1.0.b2</version>
594
      </dependency>
595
      <dependency>
596
        <groupId>xml-apis</groupId>
597
        <artifactId>xmlParserAPIs</artifactId>
598
        <version>2.0.2</version>
599
      </dependency>
600
      <dependency>
601
        <groupId>xerces</groupId>
602
        <artifactId>xercesImpl</artifactId>
603
        <version>2.4.0</version>
604
      </dependency>
605
      <dependency>
606
        <groupId>xalan</groupId>
607
        <artifactId>xalan</artifactId>
608
        <version>2.7.0</version>
609
      </dependency>
610
      <dependency>
611
        <groupId>javax.xml</groupId>
612
        <artifactId>jaxp-api</artifactId>
613
        <version>1.3.1</version>
614
      </dependency>
615
      <dependency>
616
        <groupId>xpp3</groupId>
617
        <artifactId>xpp3</artifactId>
618
        <version>1.1.3.4.O</version>
619
      </dependency>
620
      <dependency>
621
        <groupId>lucene</groupId>
622
        <artifactId>lucene</artifactId>
623
        <version>1.4.3</version>
624
      </dependency>
625
      <dependency>
626
        <groupId>javax.servlet</groupId>
627
        <artifactId>servlet-api</artifactId>
628
        <version>2.4</version>
629
      </dependency>
630
      <dependency>
631
        <groupId>struts</groupId>
632
        <artifactId>struts</artifactId>
633
        <version>1.2.9</version>
634
      </dependency>
635
      <dependency>
636
        <groupId>oro</groupId>
637
        <artifactId>oro</artifactId>
638
        <version>2.0.8</version>
639
      </dependency>
640
      <dependency>
641
        <groupId>com.mockrunner</groupId>
642
        <artifactId>mockrunner</artifactId>
643
        <version>0.3.1</version>
644
      </dependency>
645
      <dependency>
646
        <groupId>commons-beanutils</groupId>
647
        <artifactId>commons-beanutils</artifactId>
648
        <version>1.7.0</version>
649
      </dependency>
650
      <dependency>
651
        <groupId>commons-digester</groupId>
652
        <artifactId>commons-digester</artifactId>
653
        <version>1.7</version>
654
      </dependency>
655
      <dependency>
656
        <groupId>commons-fileupload</groupId>
657
        <artifactId>commons-fileupload</artifactId>
658
        <version>1.0</version>
659
      </dependency>
660
      <dependency>
661
        <groupId>commons-httpclient</groupId>
662
        <artifactId>commons-httpclient</artifactId>
663
        <version>2.0</version>
664
      </dependency>
665
      <dependency>
666
        <groupId>commons-lang</groupId>
667
        <artifactId>commons-lang</artifactId>
668
        <version>2.1</version>
669
      </dependency>
670
      <dependency>
671
        <groupId>commons-validator</groupId>
672
        <artifactId>commons-validator</artifactId>
673
        <version>1.1.4</version>
674
      </dependency>
675
      <dependency>
676
        <groupId>mockobjects</groupId>
677
        <artifactId>mockobjects-core</artifactId>
678
        <version>0.09</version>
679
      </dependency>
680
      <dependency>
681
        <groupId>mockobjects</groupId>
682
        <artifactId>mockobjects-jdk1.4-j2ee1.3</artifactId>
683
        <version>0.09</version>
684
      </dependency>
685
      <dependency>
686
        <groupId>org.springframework</groupId>
687
        <artifactId>spring-beans</artifactId>
688
        <version>1.2.5</version>
689
      </dependency>
690
      <dependency>
691
        <groupId>org.springframework</groupId>
692
        <artifactId>spring-core</artifactId>
693
        <version>1.2.5</version>
694
      </dependency>
695
      <dependency>
696
        <groupId>org.springframework</groupId>
697
        <artifactId>spring-context</artifactId>
698
        <version>1.2.5</version>
699
      </dependency>
700
      <dependency>
701
        <groupId>org.springframework</groupId>
702
        <artifactId>spring-webmvc</artifactId>
703
        <version>1.2.5</version>
704
      </dependency>
705
      <dependency>
706
        <groupId>log4j</groupId>
707
        <artifactId>log4j</artifactId>
708
        <version>1.2.9</version>
709
      </dependency>
710
      <dependency>
711
        <groupId>batik</groupId>
712
        <artifactId>batik-svggen</artifactId>
713
        <version>1.6</version>
714
      </dependency>
715
      <dependency>
716
        <groupId>batik</groupId>
717
        <artifactId>batik-awt-util</artifactId>
718
        <version>1.6</version>
719
      </dependency>
720
      <dependency>
721
        <groupId>batik</groupId>
722
        <artifactId>batik-util</artifactId>
723
        <version>1.6</version>
724
      </dependency>
725
      <dependency>
726
        <groupId>itext</groupId>
727
        <artifactId>itext</artifactId>
728
        <version>1.3</version>
729
      </dependency>
730
      <dependency>
731
        <groupId>org.mortbay.jetty</groupId>
732
        <artifactId>jetty</artifactId>
733
        <version>6.0.0beta16</version>
734
      </dependency>
735
      <dependency>
736
        <groupId>org.mortbay.jetty</groupId>
737
        <artifactId>jetty-util</artifactId>
738
        <version>6.0.0beta16</version>
739
      </dependency>
740
      <dependency>
741
        <groupId>org.mortbay.jetty</groupId>
742
        <artifactId>jsp-api-2.0</artifactId>
743
        <version>6.0.0beta16</version>
744
      </dependency>
745
      <dependency>
746
        <groupId>tomcat</groupId>
747
        <artifactId>jasper-compiler-jdt</artifactId>
748
        <version>5.5.15</version>
749
      </dependency>
750
      <dependency>
751
        <groupId>tomcat</groupId>
752
        <artifactId>jasper-compiler</artifactId>
753
        <version>5.5.15</version>
754
      </dependency>
755
      <dependency>
756
        <groupId>tomcat</groupId>
757
        <artifactId>jasper-runtime</artifactId>
758
        <version>5.5.15</version>
759
      </dependency>
760
      <dependency>
761
        <groupId>xerces</groupId>
762
        <artifactId>xercesImpl</artifactId>
763
        <version>2.6.2</version>
764
      </dependency>
765
      <dependency>
766
        <groupId>xerces</groupId>
767
        <artifactId>xmlParserAPIs</artifactId>
768
        <version>2.6.2</version>
769
      </dependency>
770
      <dependency>
771
        <groupId>commons-el</groupId>
772
        <artifactId>commons-el</artifactId>
773
        <version>1.0</version>
774
      </dependency>
775
      <dependency>
776
        <groupId>ant</groupId>
777
        <artifactId>ant</artifactId>
778
        <version>1.6.4</version>
779
      </dependency>
780
      <dependency>
781
        <groupId>org.slf4j</groupId>
782
        <artifactId>jcl104-over-slf4j</artifactId>
783
        <version>1.0-rc5</version>
784
      </dependency>
785
      <dependency>
786
        <groupId>org.slf4j</groupId>
787
        <artifactId>slf4j-simple</artifactId>
788
        <version>1.0-rc5</version>
789
      </dependency>
790
    </dependencies>
791
  </dependencyManagement>
792
  <properties>
793
    <gs.version>1.4.0-M1</gs.version>
794
    <configId>minimal</configId>
795
    <gt.version>2.2.0</gt.version>
796
  </properties>
797
</project>
(2-2/2)