Project

General

Profile

Download (22.3 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
  <parent>
5
    <groupId>eu.etaxonomy</groupId>
6
    <artifactId>taxeditor-parent</artifactId>
7
    <version>5.18.0-SNAPSHOT</version>
8
  </parent>
9
  <modelVersion>4.0.0</modelVersion>
10
  <artifactId>eu.etaxonomy.taxeditor.cdmlib</artifactId>
11
  <packaging>eclipse-plugin</packaging>
12
  <properties>
13
      <jackson.version>2.11.2</jackson.version>
14
      <poi.version>4.1.2</poi.version>
15
      <hibernate.version>5.1.17.Final</hibernate.version>
16
  </properties>
17
  <name>CDM Library Dependencies Plugin</name>
18
  <description>CDM Library and dependencies as a plugin</description>
19
  <build>
20
    <pluginManagement>
21
      <plugins>
22
        <plugin>
23
          <groupId>org.apache.maven.plugins</groupId>
24
          <artifactId>maven-surefire-plugin</artifactId>
25
          <version>2.7</version>
26
        </plugin>
27
      </plugins>
28
    </pluginManagement>
29
    <plugins>
30
      <plugin>
31
        <groupId>org.apache.maven.plugins</groupId>
32
        <artifactId>maven-dependency-plugin</artifactId>
33
        <version>2.4</version>
34
        <executions>
35
          <execution>
36
            <id>copy-dependencies</id>
37
            <phase>validate</phase>
38
            <goals>
39
              <goal>copy-dependencies</goal>
40
            </goals>
41
            <configuration>
42
              <excludeArtifactIds>
43
                cdmlib-remote-webapp
44
              </excludeArtifactIds>
45
              <includeArtifactIds>
46
                cdmlib-commons,cdmlib-model,cdmlib-persistence,cdmlib-services,cdmlib-cache,cdmlib-ext,cdmlib-io,cdmlib-remote,cdmlib-print
47
              </includeArtifactIds>
48
              <outputDirectory>${basedir}/lib</outputDirectory>
49
              <overWriteReleases>true</overWriteReleases>
50
              <overWriteSnapshots>true</overWriteSnapshots>
51
              <excludeTransitive>true</excludeTransitive>
52
            </configuration>
53
          </execution>
54
          <execution>
55
            <id>copy-dependency-jars</id>
56
            <phase>validate</phase>
57
            <goals>
58
              <goal>copy-dependencies</goal>
59
            </goals>
60
            <configuration>
61
              <includeArtifactIds>
62
                httpclient,JavaAPIforKml,iiif-apis,commons-beanutils,commons-lang3,commons-lang,commons-codec,
63
                commons-imaging,jackson-databind,jackson-annotations,jackson-core,jboss-logging,
64
                validation-api,classmate,javax.el-api,slf4j-api,slf4j-log4j12,
65
                hibernate-validator,hibernate-validator-cdi,
66
                spring-context,spring-context-support,spring-aspects,spring-test,spring-beans,
67
                spring-tx,spring-web,spring-core,spring-aop,spring-expression,spring-orm,
68
                spring-oxm,spring-jdbc,spring-security-config,spring-security-core,
69
                aopalliance,aspectjweaver,aspectjrt,
70
                hibernate-jpa-2.1-api,javassist,hibernate-commons-annotations,
71
                hibernate-core,hibernate-entitymanager,hibernate-envers,
72
                xml-apis,lsid-client,jdom,jdom2,
73
                poi,poi-ooxml,poi-ooxml-schemas,xmlbeans,commons-collections4,commons-math3,
74
                jaxb-api,javax.activation-api,
75
                c3p0,opencsv,joda-time,usertype.jodatime,usertype.spi,
76
                h2,mysql-connector-java,postgresql
77
              </includeArtifactIds>
78
              <outputDirectory>
79
                ${basedir}/lib
80
              </outputDirectory>
81
              <overWriteReleases>true</overWriteReleases>
82
              <overWriteSnapshots>true</overWriteSnapshots>
83
              <excludeTransitive>true</excludeTransitive>
84
            </configuration>
85
          </execution>
86
          <execution>
87
            <id>copy-dependency-jars-transitive</id>
88
            <phase>validate</phase>
89
            <goals>
90
              <goal>copy-dependencies</goal>
91
            </goals>
92
            <configuration>
93
              <includeArtifactIds>
94
                httpclient-cache,httpcore,httpmime,xercesImpl
95
              </includeArtifactIds>
96
              <outputDirectory>
97
                ${basedir}/lib
98
              </outputDirectory>
99
              <overWriteReleases>true</overWriteReleases>
100
              <overWriteSnapshots>true</overWriteSnapshots>
101
              <excludeTransitive>false</excludeTransitive>
102
            </configuration>
103
          </execution>
104
        </executions>
105
      </plugin>
106
      <plugin>
107
        <groupId>org.apache.maven.plugins</groupId>
108
        <artifactId>maven-antrun-plugin</artifactId>
109
        <executions>
110
          <execution>
111
            <id>update-snapshot-jar-names</id>
112
            <phase>validate</phase>
113
            <goals>
114
              <goal>run</goal>
115
            </goals>
116
            <configuration>
117
              <target>
118
                <echo>Update cdmlib jars to SNAPSHOT when build with
119
                  timestamp
120
                </echo>
121
                <move todir="./lib">
122
                  <fileset dir="./lib" />
123
                  <mapper type="regexp"
124
                    from="(^cdmlib\-.*\-\d+\.\d+\.\d+\-)[\d.-]+(\.jar)"
125
                    to="\1SNAPSHOT\2" />
126
                </move>
127
                <move todir="./lib">
128
                  <fileset dir="./lib" />
129
                  <mapper type="regexp"
130
                    from="(^cdmlib\-.*\-\d+\.\d+\.\d+\-)[\d.-]+(\-sources\.jar)"
131
                    to="\1SNAPSHOT\2" />
132
                </move>
133
              </target>
134
            </configuration>
135
          </execution>
136
          <execution>
137
            <id>remove-existing-jars</id>
138
            <phase>clean</phase>
139
            <goals>
140
              <goal>run</goal>
141
            </goals>
142
            <configuration>
143
              <target>
144
                <echo>Remove all cdmlib jars</echo>
145
                <delete>
146
                  <fileset dir="./lib" includes="cdmlib-*" />
147
                </delete>
148
              </target>
149
            </configuration>
150
          </execution>
151
        </executions>
152
      </plugin>
153
    </plugins>
154
  </build>
155
  <profiles>
156
    <profile>
157
      <id>copyAllJars</id>
158
      <build>
159
        <plugins>
160
          <plugin>
161
            <groupId>org.apache.maven.plugins</groupId>
162
            <artifactId>maven-dependency-plugin</artifactId>
163
            <version>2.4</version>
164
            <executions>
165
              <execution>
166
                <id>copy-all-dependencies</id>
167
                <phase>validate</phase>
168
                <goals>
169
                  <goal>copy-dependencies</goal>
170
                </goals>
171
                <configuration>
172
                  <excludeArtifactIds>
173
                    cdmlib-remote-webapp
174
                  </excludeArtifactIds>
175
                  <outputDirectory>${basedir}/lib</outputDirectory>
176
                  <overWriteReleases>true</overWriteReleases>
177
                  <overWriteSnapshots>true</overWriteSnapshots>
178
                  <excludeTransitive>true</excludeTransitive>
179
                </configuration>
180
              </execution>
181
            </executions>
182
          </plugin>
183
        </plugins>
184
      </build>
185
    </profile>
186
  </profiles>
187
  <repositories>
188
    <repository>
189
      <id>SpringSource Enterprise Bundle Repository - External Bundle
190
        Milestones
191
      </id>
192
      <url>http://repository.springsource.com/maven/bundles/milestone
193
      </url>
194
    </repository>
195
    <repository>
196
      <id>SpringSource Enterprise Bundle Repository - SpringSource
197
        Bundle
198
        Releases
199
      </id>
200
      <url>http://repository.springsource.com/maven/bundles/release
201
      </url>
202
    </repository>
203
    <repository>
204
      <id>SpringSource Enterprise Bundle Repository - External Bundle
205
        Releases
206
      </id>
207
      <url>http://repository.springsource.com/maven/bundles/external
208
      </url>
209
    </repository>
210
	 <repository>
211
        <id>repository.springsource.release</id>
212
        <name>SpringSource GA Repository</name>
213
        <url>http://repo.springsource.org/release</url>
214
    </repository>
215
  </repositories>
216
  <dependencies>
217
    <dependency>
218
      <groupId>eu.etaxonomy</groupId>
219
      <artifactId>cdmlib-commons</artifactId>
220
      <version>${cdmlib.version}</version>
221
    </dependency>
222
    <dependency>
223
      <groupId>eu.etaxonomy</groupId>
224
      <artifactId>cdmlib-model</artifactId>
225
      <version>${cdmlib.version}</version>
226
    </dependency>
227
    <dependency>
228
      <groupId>eu.etaxonomy</groupId>
229
      <artifactId>cdmlib-persistence</artifactId>
230
      <version>${cdmlib.version}</version>
231
    </dependency>
232
    <dependency>
233
      <groupId>eu.etaxonomy</groupId>
234
      <artifactId>cdmlib-remote</artifactId>
235
      <version>${cdmlib.version}</version>
236
    </dependency>
237
    <dependency>
238
      <groupId>eu.etaxonomy</groupId>
239
      <artifactId>cdmlib-print</artifactId>
240
      <version>${cdmlib.version}</version>
241
    </dependency>
242
    <dependency>
243
      <groupId>eu.etaxonomy</groupId>
244
      <artifactId>cdmlib-services</artifactId>
245
      <version>${cdmlib.version}</version>
246
    </dependency>
247
    <dependency>
248
      <groupId>eu.etaxonomy</groupId>
249
      <artifactId>cdmlib-io</artifactId>
250
      <version>${cdmlib.version}</version>
251
    </dependency>
252
    <dependency>
253
      <groupId>eu.etaxonomy</groupId>
254
      <artifactId>cdmlib-ext</artifactId>
255
      <version>${cdmlib.version}</version>
256
    </dependency>
257
    <dependency>
258
      <groupId>eu.etaxonomy</groupId>
259
      <artifactId>cdmlib-cache</artifactId>
260
      <version>${cdmlib.version}</version>
261
    </dependency>
262
    <dependency>
263
      <groupId>dom4j</groupId>
264
      <artifactId>dom4j</artifactId>
265
      <version>1.6</version>
266
    </dependency>
267
    <dependency>
268
      <groupId>log4j</groupId>
269
      <artifactId>log4j</artifactId>
270
      <version>1.2.17</version>
271
    </dependency>
272
    <dependency>
273
	    <groupId>joda-time</groupId>
274
	    <artifactId>joda-time</artifactId>
275
	    <version>2.10.6</version>
276
	</dependency>
277
	<dependency>
278
	    <groupId>org.jadira.usertype</groupId>
279
	    <artifactId>usertype.jodatime</artifactId>
280
	    <version>2.0.1</version>
281
	</dependency>
282
	<dependency>
283
	    <groupId>org.jadira.usertype</groupId>
284
	    <artifactId>usertype.spi</artifactId>
285
	    <version>2.0.1</version>
286
	</dependency>
287
    <dependency>
288
      <!-- needed? -->
289
      <groupId>org.jdom</groupId>
290
      <artifactId>jdom2</artifactId>
291
      <version>2.0.6</version>
292
    </dependency>
293
    <dependency>
294
      <!-- needed? -->
295
      <groupId>org.jdom</groupId>
296
      <artifactId>jdom</artifactId>
297
      <version>1.1.3</version>
298
    </dependency>
299
    <dependency>
300
      <groupId>org.springframework</groupId>
301
      <artifactId>spring-context</artifactId>
302
      <version>4.3.28.RELEASE</version>
303
    </dependency>
304
    <dependency>
305
      <groupId>org.springframework</groupId>
306
      <artifactId>spring-context-support</artifactId>
307
      <version>4.3.28.RELEASE</version>
308
    </dependency>
309
    <dependency>
310
      <groupId>org.springframework</groupId>
311
      <artifactId>spring-aspects</artifactId>
312
      <version>4.3.28.RELEASE</version>
313
    </dependency>
314
    <dependency>
315
      <groupId>org.springframework</groupId>
316
      <artifactId>spring-test</artifactId>
317
      <version>4.3.28.RELEASE</version>
318
    </dependency>
319
    <dependency>
320
      <groupId>org.springframework</groupId>
321
      <artifactId>spring-beans</artifactId>
322
      <version>4.3.28.RELEASE</version>
323
    </dependency>
324
    <dependency>
325
      <groupId>org.springframework</groupId>
326
      <artifactId>spring-tx</artifactId>
327
      <version>4.3.28.RELEASE</version>
328
    </dependency>
329
    <dependency>
330
		<groupId>org.springframework</groupId>
331
		<artifactId>spring-web</artifactId>
332
		<version>4.3.28.RELEASE</version>
333
	</dependency>
334
    <dependency>
335
      <groupId>org.springframework</groupId>
336
      <artifactId>spring-core</artifactId>
337
      <version>4.3.28.RELEASE</version>
338
    </dependency>
339
    <dependency>
340
      <groupId>org.springframework</groupId>
341
      <artifactId>spring-aop</artifactId>
342
      <version>4.3.28.RELEASE</version>
343
    </dependency>
344
    <dependency>
345
		<groupId>org.springframework</groupId>
346
		<artifactId>spring-expression</artifactId>
347
		<version>4.3.28.RELEASE</version>
348
	</dependency>
349
   <dependency>
350
		<groupId>org.springframework</groupId>
351
		<artifactId>spring-orm</artifactId>
352
		<version>4.3.28.RELEASE</version>
353
	</dependency>
354
	<dependency>
355
		<groupId>org.springframework</groupId>
356
		<artifactId>spring-oxm</artifactId>
357
		<version>4.3.28.RELEASE</version>
358
	</dependency>
359
    <dependency>
360
		<groupId>org.springframework</groupId>
361
		<artifactId>spring-jdbc</artifactId>
362
		<version>4.3.28.RELEASE</version>
363
	</dependency>
364
    <dependency>
365
      <groupId>org.springframework.security</groupId>
366
      <artifactId>spring-security-core</artifactId>
367
      <version>4.2.18.RELEASE</version>
368
    </dependency>
369
    <dependency>
370
      <groupId>org.springframework.security</groupId>
371
      <artifactId>spring-security-config</artifactId>
372
      <version>4.2.18.RELEASE</version>
373
    </dependency>
374
    <dependency>
375
      <groupId>org.springframework.security</groupId>
376
      <artifactId>spring-security-remoting</artifactId>
377
      <version>4.2.18.RELEASE</version>
378
    </dependency>
379
    <dependency>
380
    	<!-- dependency of spring security core, can be removed after
381
    	upgrading to spring security 5.x -->
382
	    <groupId>aopalliance</groupId>
383
	    <artifactId>aopalliance</artifactId>
384
	    <version>1.0</version>
385
	</dependency>
386

    
387
    <dependency>
388
        <groupId>commons-beanutils</groupId>
389
        <artifactId>commons-beanutils</artifactId>
390
        <version>1.9.4</version>
391
    </dependency>
392
    <dependency>
393
        <groupId>org.apache.commons</groupId>
394
        <artifactId>commons-imaging</artifactId>
395
        <version>1.0-alpha2</version>
396
    </dependency>
397
	<dependency>
398
	    <groupId>net.sf.opencsv</groupId>
399
	    <artifactId>opencsv</artifactId>
400
	    <version>2.3</version>
401
	</dependency>
402

    
403
    <dependency>
404
      <groupId>org.apache.httpcomponents</groupId>
405
      <artifactId>httpclient</artifactId>
406
    </dependency>
407

    
408
    <dependency>
409
        <groupId>org.apache.commons</groupId>
410
        <artifactId>commons-lang3</artifactId>
411
        <version>3.11</version>
412
    </dependency>
413
    <dependency>
414
        <!-- needed at least in taxeditor.test by BundleLoader; try to move there but test carefully -->
415
        <groupId>commons-lang</groupId>
416
        <artifactId>commons-lang</artifactId>
417
        <version>2.6</version>
418
    </dependency>
419
    <dependency>
420
        <!-- maybe only needed for tests, but does not work to only have there -->
421
        <groupId>com.mchange</groupId>
422
        <artifactId>c3p0</artifactId>
423
        <version>0.9.5.2</version>
424
<!--         <scope>test</scope> -->
425
    </dependency>
426
    
427
    <!-- jackson, not sure if really needed -->
428
    <dependency>
429
        <groupId>com.fasterxml.jackson.core</groupId>
430
        <artifactId>jackson-databind</artifactId>
431
        <version>${jackson.version}</version>
432
    </dependency>
433
    <dependency>
434
        <groupId>com.fasterxml.jackson.core</groupId>
435
        <artifactId>jackson-core</artifactId>
436
        <version>${jackson.version}</version>
437
    </dependency>
438
    <dependency>
439
        <groupId>com.fasterxml.jackson.core</groupId>
440
        <artifactId>jackson-annotations</artifactId>
441
        <version>${jackson.version}</version>
442
    </dependency>
443
    
444
    <dependency>
445
        <!-- needed? -->
446
        <groupId>xerces</groupId>
447
        <artifactId>xercesImpl</artifactId>
448
        <version>2.12.0</version>
449
    </dependency>
450
    
451
    <dependency>
452
       <groupId>org.aspectj</groupId>
453
       <artifactId>aspectjweaver</artifactId>
454
       <version>1.9.6</version>
455
    </dependency>
456
    <dependency>
457
       <groupId>org.aspectj</groupId>
458
       <artifactId>aspectjrt</artifactId>
459
       <version>1.9.6</version>
460
    </dependency>
461
    <dependency>
462
       <groupId>org.hibernate.javax.persistence</groupId>
463
       <artifactId>hibernate-jpa-2.1-api</artifactId>
464
       <version>1.0.2.Final</version>
465
    </dependency>
466
    <dependency>
467
        <groupId>org.javassist</groupId>
468
        <artifactId>javassist</artifactId>
469
        <version>3.27.0-GA</version>
470
    </dependency>
471
    <dependency>
472
        <groupId>org.hibernate.common</groupId>
473
        <artifactId>hibernate-commons-annotations</artifactId>
474
        <version>5.1.0.Final</version>
475
    </dependency>
476
    <dependency>
477
        <groupId>xml-apis</groupId>
478
        <artifactId>xml-apis</artifactId>
479
        <version>1.4.01</version>
480
    </dependency>
481
    <dependency>
482
        <groupId>com.ibm.lsid</groupId>
483
        <artifactId>lsid-client</artifactId>
484
        <version>1.1.2</version>
485
    </dependency>
486
    
487
    <!-- poi -->
488
    <!-- needed -->
489
    <dependency>
490
        <groupId>org.apache.poi</groupId>
491
        <artifactId>poi</artifactId>
492
        <version>${poi.version}</version>
493
    </dependency>
494
    <dependency>
495
        <groupId>org.apache.poi</groupId>
496
        <artifactId>poi-ooxml-schemas</artifactId>
497
        <version>${poi.version}</version>
498
    </dependency>
499
    <dependency>
500
        <groupId>org.apache.poi</groupId>
501
        <artifactId>poi-ooxml</artifactId>
502
        <version>${poi.version}</version>
503
    </dependency>
504
    <dependency>
505
      	<groupId>org.apache.xmlbeans</groupId>
506
      	<artifactId>xmlbeans</artifactId>
507
      	<version>3.1.0</version>
508
    </dependency>
509
    <dependency>
510
	    <groupId>org.apache.commons</groupId>
511
	    <artifactId>commons-collections4</artifactId>
512
	    <version>4.4</version>
513
	</dependency>
514
	<dependency>
515
	    <groupId>org.apache.commons</groupId>
516
	    <artifactId>commons-math3</artifactId>
517
	    <version>3.6.1</version>
518
	</dependency>
519
    <!-- not yet included 
520
       poi:   com.zaxxer:SparseBitSet
521
       poi-ooxml   commons-compress,curvesapi
522
     --> 
523
      
524
    <!-- jaxb -->
525
    <dependency>
526
	    <groupId>javax.xml.bind</groupId>
527
	    <artifactId>jaxb-api</artifactId>
528
	    <version>2.3.1</version>
529
	</dependency>  
530
    <dependency>
531
        <groupId>javax.activation</groupId>
532
        <artifactId>javax.activation-api</artifactId>
533
        <version>1.2.0</version>
534
    </dependency>
535
 
536
	<!-- logging -->
537
    <dependency>
538
        <!-- needed? -->
539
        <groupId>org.jboss.logging</groupId>
540
        <artifactId>jboss-logging</artifactId>
541
        <version>3.4.1.Final</version>
542
    </dependency>
543
    <dependency> 
544
	    <groupId>org.slf4j</groupId>
545
	    <artifactId>slf4j-api</artifactId>
546
	    <version>1.7.30</version>
547
	</dependency>
548
    <dependency> 
549
	    <groupId>org.slf4j</groupId>
550
	    <artifactId>slf4j-log4j12</artifactId>
551
	    <version>1.7.30</version>
552
	</dependency>
553
	<!-- slf4j-nop is not needed -->
554
    
555
	<!-- validation, needed? -->
556
	<dependency>
557
    	<groupId>org.hibernate.validator</groupId>
558
    	<artifactId>hibernate-validator</artifactId>
559
    	<version>6.1.5.Final</version>
560
	</dependency>
561
	<dependency>
562
    	<groupId>org.hibernate.validator</groupId>
563
    	<artifactId>hibernate-validator-cdi</artifactId>
564
    	<version>6.1.5.Final</version>
565
	</dependency>
566
    <dependency>
567
        <groupId>com.fasterxml</groupId>
568
        <artifactId>classmate</artifactId>
569
        <version>1.5.1</version>
570
    </dependency>
571
    <dependency>
572
        <groupId>javax.el</groupId>
573
        <artifactId>javax.el-api</artifactId>
574
        <version>3.0.0</version>
575
    </dependency>
576
    
577
    <dependency>
578
    	<!-- used in AuthenticatingHttpInvokerRequestExecutor -->
579
        <groupId>commons-codec</groupId>
580
        <artifactId>commons-codec</artifactId>
581
        <version>1.14</version>
582
    </dependency>
583

    
584
    <!-- only for supporting test button in datasource dialogue, dialogue should be moved to taxeditor.webapp -->
585
	<dependency>
586
	    <groupId>com.h2database</groupId>
587
	    <artifactId>h2</artifactId>
588
	    <version>1.4.190</version>
589
	</dependency>
590
	<dependency>
591
        <groupId>mysql</groupId>
592
        <artifactId>mysql-connector-java</artifactId>
593
        <version>8.0.21</version>
594
    </dependency>
595
    <dependency>
596
        <groupId>org.postgresql</groupId>
597
        <artifactId>postgresql</artifactId>
598
        <version>42.2.15</version>
599
    </dependency>
600
      
601
    <!-- For Unit Tests Start -->
602
	<!-- still needed? -->
603

    
604
    <dependency>
605
      <groupId>commons-dbcp</groupId>
606
      <artifactId>commons-dbcp</artifactId>
607
      <version>1.4</version>
608
    </dependency>
609
    <dependency>
610
      <groupId>commons-pool</groupId>
611
      <artifactId>commons-pool</artifactId>
612
      <version>1.5.4</version>
613
    </dependency>
614
 
615
    <!-- For Unit Tests End -->
616

    
617
    <!-- For Hibernate Mapping Start -->
618
    <dependency>
619
      <groupId>javax.validation</groupId>
620
      <artifactId>validation-api</artifactId>
621
      <version>2.0.1.Final</version>
622
    </dependency>
623
    <!-- For Hibernate Mapping End -->
624
    
625
    <!-- Hibernate -->
626
    <!-- still needed because cdmlib-service still uses classes from cdmlib-persistence (e.g. OrderHint),
627
         and those load classes from hibernate -->
628
    <!-- all other org.hibernate dependencies have been removed already -->
629
    <dependency>
630
        <groupId>org.hibernate</groupId>
631
        <artifactId>hibernate-core</artifactId>
632
        <version>${hibernate.version}</version>
633
    </dependency>    
634
    <dependency>
635
        <groupId>org.hibernate</groupId>
636
        <artifactId>hibernate-entitymanager</artifactId>
637
        <version>${hibernate.version}</version>
638
    </dependency>
639
    <dependency>
640
        <groupId>org.hibernate</groupId>
641
        <artifactId>hibernate-envers</artifactId>
642
        <version>${hibernate.version}</version>
643
    </dependency>    
644
    
645
    <!-- KML/IIIF dependencies should not bee needed for the taxeditor, but at current the KMLDocumentBuilder 
646
         is used in the EditGeoService bean which is needed to display the distribution maps in the editor.
647
     -->
648
     <dependency>
649
        <groupId>de.micromata.jak</groupId>
650
        <artifactId>JavaAPIforKml</artifactId>
651
        <version>2.2.1</version><!-- must be same version as in cdmlib -->
652
    </dependency>
653
    <dependency>
654
        <groupId>de.digitalcollections.iiif</groupId>
655
        <artifactId>iiif-apis</artifactId>
656
        <version>0.3.7</version>
657
    </dependency>
658
  </dependencies>
659
</project>
660

    
(5-5/5)