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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
3
|
<modelVersion>4.0.0</modelVersion>
|
4
|
<groupId>eu.etaxonomy</groupId>
|
5
|
<artifactId>cdmlib-parent</artifactId>
|
6
|
<version>5.32.0-SNAPSHOT</version>
|
7
|
<name>CDM Library</name>
|
8
|
<description>The Java implementation of the Common Data Model (CDM), the data model for EDIT's internet platform for cybertaxonomy.</description>
|
9
|
<url>https://cybertaxonomy.org/cdmlib/</url>
|
10
|
<inceptionYear>2007</inceptionYear>
|
11
|
<packaging>pom</packaging>
|
12
|
<modules>
|
13
|
<module>cdmlib-commons</module>
|
14
|
<module>cdmlib-model</module>
|
15
|
<module>cdmlib-api</module>
|
16
|
<module>cdmlib-db</module>
|
17
|
<module>cdmlib-test</module>
|
18
|
<module>cdmlib-persistence</module>
|
19
|
<module>cdmlib-services</module>
|
20
|
<module>cdmlib-cache</module>
|
21
|
<module>cdmlib-ext</module>
|
22
|
<module>cdmlib-io</module>
|
23
|
<module>cdmlib-remote</module>
|
24
|
<module>cdmlib-print</module>
|
25
|
<module>cdmlib-remote-webapp</module>
|
26
|
</modules>
|
27
|
<properties>
|
28
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
29
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
30
|
<java.codelevel>1.8</java.codelevel>
|
31
|
<spring.version>4.3.30.RELEASE</spring.version> <!-- checked 2020-08, further upgrade possible -->
|
32
|
<spring-security.version>4.2.20.RELEASE</spring-security.version> <!-- checked 2020-08, further upgrade possible -->
|
33
|
<spring-security-oauth2.version>2.5.2.RELEASE</spring-security-oauth2.version> <!-- checked 2020-08 -->
|
34
|
<spring-cloud.version>1.1.3.RELEASE</spring-cloud.version>
|
35
|
<hibernate.version>5.4.33.Final</hibernate.version>
|
36
|
<hibernate-validator.version>6.2.3.Final</hibernate-validator.version> <!-- checked 2020-08 -->
|
37
|
<hibernate-search.version>5.11.10.Final</hibernate-search.version>
|
38
|
<lucene.version>5.5.5</lucene.version>
|
39
|
<unitils.version>3.4.6</unitils.version>
|
40
|
<httpcomponents.version>4.5.13</httpcomponents.version>
|
41
|
<doxia.version>1.11.1</doxia.version> <!-- checked 2021-12 -->
|
42
|
<poi.version>5.2.2</poi.version> <!-- checked 2022-06 -->
|
43
|
<jackson.version>2.13.3</jackson.version> <!-- checked 2022-05 -->
|
44
|
<!-- CAUTION when upgrading, 1.8x requires another log4j binding: https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/index.html -->
|
45
|
<slf4j.version>1.7.36</slf4j.version> <!-- checked 2022-06 -->
|
46
|
<log4j.version>2.18.0</log4j.version>
|
47
|
<jaxb.version>2.3.3</jaxb.version> <!-- checked 2020-08, there is a newer version 3.0.0-MX, not checked if compatible -->
|
48
|
<cglib.version>3.3.0</cglib.version>
|
49
|
<aspectj.version>1.9.7</aspectj.version> <!-- checked 2022-05 -->
|
50
|
<geotools.version>23.2</geotools.version> <!-- checked 2020-08 -->
|
51
|
<dozer.version>6.5.2</dozer.version> <!-- checked 2021-02 -->
|
52
|
<jakarta.mail.version>1.5.6</jakarta.mail.version> <!-- compatible to the one in spring-context-support/4.3.28.RELEASE -->
|
53
|
<doclint>none</doclint>
|
54
|
</properties>
|
55
|
|
56
|
<scm>
|
57
|
<connection>scm:git:https://dev.e-taxonomy.eu/git/cdmlib.git</connection>
|
58
|
<developerConnection>scm:git:ssh://git@dev.e-taxonomy.eu/var/git/cdmlib.git</developerConnection>
|
59
|
<url>https://dev.e-taxonomy.eu/gitweb/cdmlib.git/tree</url>
|
60
|
</scm>
|
61
|
|
62
|
<prerequisites>
|
63
|
<maven>3.6.3</maven>
|
64
|
</prerequisites>
|
65
|
|
66
|
<mailingLists>
|
67
|
<mailingList>
|
68
|
<name>EDIT Platform Developers</name>
|
69
|
<subscribe>
|
70
|
https://lists.fu-berlin.de/listinfo/editplatformdevelopers#subscribe
|
71
|
</subscribe>
|
72
|
<unsubscribe>
|
73
|
https://lists.fu-berlin.de/listinfo/editplatformdevelopers#options
|
74
|
</unsubscribe>
|
75
|
</mailingList>
|
76
|
<mailingList>
|
77
|
<name>EDIT User</name>
|
78
|
<subscribe>
|
79
|
https://lists.fu-berlin.de/listinfo/edituser#subscribe
|
80
|
</subscribe>
|
81
|
<unsubscribe>
|
82
|
https://lists.fu-berlin.de/listinfo/edituser#options
|
83
|
</unsubscribe>
|
84
|
</mailingList>
|
85
|
</mailingLists>
|
86
|
<licenses>
|
87
|
<license>
|
88
|
<name>Mozilla Public License Version 1.1</name>
|
89
|
<url>https://www.mozilla.org/MPL/MPL-1.1.html</url>
|
90
|
<distribution>repo</distribution>
|
91
|
</license>
|
92
|
</licenses>
|
93
|
<organization>
|
94
|
<name>EDIT</name>
|
95
|
<url>https://cybertaxonomy.org/</url>
|
96
|
</organization>
|
97
|
<developers>
|
98
|
<developer>
|
99
|
<id>k.luther</id>
|
100
|
<name>Katja Luther</name>
|
101
|
<email>k.luther [at] bgbm.org</email>
|
102
|
<organization>Botanical Garden Botanical Museum Berlin</organization>
|
103
|
<organizationUrl>https://www.bgbm.org/en/biodiversity-informatics</organizationUrl>
|
104
|
<timezone>+1</timezone>
|
105
|
<roles>
|
106
|
<role>Java Developer</role>
|
107
|
<role>Release Manager</role>
|
108
|
</roles>
|
109
|
<url />
|
110
|
</developer>
|
111
|
<developer>
|
112
|
<id>a.mueller</id>
|
113
|
<name>Andreas Müller</name>
|
114
|
<email>a.mueller [at] bgbm.org</email>
|
115
|
<organization>Botanical Garden Botanical Museum Berlin</organization>
|
116
|
<organizationUrl>https://www.bgbm.org/en/biodiversity-informatics</organizationUrl>
|
117
|
<timezone>+1</timezone>
|
118
|
<roles>
|
119
|
<role>Architect</role>
|
120
|
<role>Java Developer</role>
|
121
|
<role>Release Manager</role>
|
122
|
</roles>
|
123
|
<url />
|
124
|
</developer>
|
125
|
</developers>
|
126
|
<issueManagement>
|
127
|
<system>Redmine</system>
|
128
|
<url>https://dev.e-taxonomy.eu/redmine/projects/edit</url>
|
129
|
</issueManagement>
|
130
|
<ciManagement>
|
131
|
<system>Jenkins</system>
|
132
|
<url>https://int.e-taxonomy.eu/jenkins</url>
|
133
|
</ciManagement>
|
134
|
<!-- **** REPOSITORIES **** -->
|
135
|
<profiles>
|
136
|
<profile>
|
137
|
<id>local-repository</id>
|
138
|
<activation>
|
139
|
<property>
|
140
|
<name>localrepo</name>
|
141
|
</property>
|
142
|
</activation>
|
143
|
<repositories>
|
144
|
<repository>
|
145
|
<id>EditLocalRepository</id>
|
146
|
<url>file://${localrepo}/eu/etaxonomy/</url>
|
147
|
<releases>
|
148
|
<enabled>false</enabled>
|
149
|
<updatePolicy>always</updatePolicy>
|
150
|
</releases>
|
151
|
<snapshots>
|
152
|
<enabled>true</enabled>
|
153
|
<updatePolicy>always</updatePolicy>
|
154
|
</snapshots>
|
155
|
</repository>
|
156
|
</repositories>
|
157
|
</profile>
|
158
|
</profiles>
|
159
|
<repositories>
|
160
|
<!-- the cdm internal repository -->
|
161
|
<repository>
|
162
|
<id>EditRepository</id>
|
163
|
<url>https://cybertaxonomy.org/mavenrepo/</url>
|
164
|
</repository>
|
165
|
<!-- apache incubating repository, was used for jena-tdb -->
|
166
|
<!-- <repository>
|
167
|
<id>ApacheIncubating</id>
|
168
|
<url>https://people.apache.org/repo/m2-incubating-repository/</url>
|
169
|
</repository> -->
|
170
|
<!-- was neccessary for hibernate-envers -->
|
171
|
<!-- <repository>
|
172
|
<id>jboss-repository</id>
|
173
|
<name>JBoss Repository</name>
|
174
|
<url>https://repository.jboss.org</url>
|
175
|
</repository> -->
|
176
|
<repository>
|
177
|
<id>OSGeo Repository</id>
|
178
|
<url>https://repo.osgeo.org/repository/release/</url>
|
179
|
</repository>
|
180
|
</repositories>
|
181
|
<!-- **** PLUGINS **** -->
|
182
|
<build>
|
183
|
<plugins>
|
184
|
<plugin>
|
185
|
<groupId>org.apache.maven.plugins</groupId>
|
186
|
<artifactId>maven-compiler-plugin</artifactId>
|
187
|
<!-- TODO #64077#9919 upgrading to 3.x leads to test failures in model etc. -->
|
188
|
<version>2.5.1</version>
|
189
|
<configuration>
|
190
|
<source>${java.codelevel}</source>
|
191
|
<target>${java.codelevel}</target>
|
192
|
<encoding>${project.build.sourceEncoding}</encoding> <!-- necessary? should be covered by project. properties source encoding -->
|
193
|
<!-- to increase stacksize see #6404 -->
|
194
|
</configuration>
|
195
|
</plugin>
|
196
|
<plugin>
|
197
|
<groupId>org.apache.maven.plugins</groupId>
|
198
|
<artifactId>maven-surefire-plugin</artifactId>
|
199
|
<version>3.0.0-M7</version> <!-- updated 2022-06 -->
|
200
|
<configuration>
|
201
|
<argLine>-Xmx512M -Dfile.encoding=${project.build.sourceEncoding}</argLine>
|
202
|
<runOrder>alphabetical</runOrder>
|
203
|
<includes>
|
204
|
<include>**/*Test.java</include>
|
205
|
</includes>
|
206
|
</configuration>
|
207
|
</plugin>
|
208
|
<plugin>
|
209
|
<groupId>org.apache.maven.plugins</groupId>
|
210
|
<artifactId>maven-resources-plugin</artifactId>
|
211
|
<version>3.1.0</version>
|
212
|
<configuration>
|
213
|
<encoding>${project.build.sourceEncoding}</encoding>
|
214
|
</configuration>
|
215
|
</plugin>
|
216
|
<plugin>
|
217
|
<groupId>org.codehaus.mojo</groupId>
|
218
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
219
|
<version>1.4</version>
|
220
|
<executions>
|
221
|
<execution>
|
222
|
<!--<phase>deploy</phase> -->
|
223
|
<goals>
|
224
|
<goal>create</goal>
|
225
|
</goals>
|
226
|
</execution>
|
227
|
</executions>
|
228
|
<configuration>
|
229
|
<doCheck>false</doCheck>
|
230
|
<!-- Only create the build number if there are no local modifications -->
|
231
|
<doUpdate>false</doUpdate>
|
232
|
<!-- automatically update the local svn copy -->
|
233
|
</configuration>
|
234
|
</plugin>
|
235
|
<plugin>
|
236
|
<groupId>org.apache.maven.plugins</groupId>
|
237
|
<artifactId>maven-site-plugin</artifactId>
|
238
|
<version>3.10.0</version>
|
239
|
<configuration>
|
240
|
<locales>en</locales>
|
241
|
<outputEncoding>UTF-8</outputEncoding><!-- necessary? should be covered by project. properties output encoding -->
|
242
|
<!-- chmod: not not use chmod, rather adapt the umask of the user
|
243
|
at the server to which the site is deployed -->
|
244
|
<chmod>false</chmod>
|
245
|
</configuration>
|
246
|
</plugin>
|
247
|
<plugin>
|
248
|
<groupId>org.apache.maven.plugins</groupId>
|
249
|
<artifactId>maven-source-plugin</artifactId>
|
250
|
<version>3.2.1</version>
|
251
|
<executions>
|
252
|
<execution>
|
253
|
<id>attach-sources</id>
|
254
|
<phase>verify</phase>
|
255
|
<goals>
|
256
|
<goal>jar</goal>
|
257
|
</goals>
|
258
|
</execution>
|
259
|
</executions>
|
260
|
</plugin>
|
261
|
<plugin>
|
262
|
<groupId>org.apache.maven.plugins</groupId>
|
263
|
<artifactId>maven-javadoc-plugin</artifactId>
|
264
|
<version>3.3.1</version>
|
265
|
<configuration>
|
266
|
<stylesheet>maven</stylesheet>
|
267
|
<quiet>true</quiet>
|
268
|
<detectLinks>true</detectLinks>
|
269
|
<failOnError>false</failOnError>
|
270
|
<!-- TODO do more finegrained exclusions, see e.g https://docs.oracle.com/javase/8/docs/technotes/tools/windows/javadoc.html#BEJEFABE -->
|
271
|
<doclint>${doclint}</doclint>
|
272
|
</configuration>
|
273
|
<executions>
|
274
|
<execution>
|
275
|
<id>aggregate</id>
|
276
|
<goals>
|
277
|
<goal>aggregate</goal>
|
278
|
</goals>
|
279
|
<phase>site</phase>
|
280
|
</execution>
|
281
|
</executions>
|
282
|
</plugin>
|
283
|
<plugin>
|
284
|
<groupId>org.apache.maven.plugins</groupId>
|
285
|
<artifactId>maven-eclipse-plugin</artifactId>
|
286
|
<version>2.10</version>
|
287
|
<configuration>
|
288
|
<downloadSources>true</downloadSources>
|
289
|
<downloadJavadocs>true</downloadJavadocs>
|
290
|
</configuration>
|
291
|
</plugin>
|
292
|
<plugin>
|
293
|
<groupId>com.agilejava.docbkx</groupId>
|
294
|
<artifactId>docbkx-maven-plugin</artifactId>
|
295
|
<version>2.0.17</version>
|
296
|
<executions>
|
297
|
<execution>
|
298
|
<goals>
|
299
|
<goal>generate-html</goal>
|
300
|
<goal>generate-pdf</goal>
|
301
|
</goals>
|
302
|
<phase>pre-site</phase>
|
303
|
</execution>
|
304
|
</executions>
|
305
|
<dependencies>
|
306
|
<dependency>
|
307
|
<groupId>net.sf.docbook</groupId>
|
308
|
<artifactId>docbook-xml</artifactId>
|
309
|
<version>5.0</version>
|
310
|
<scope>runtime</scope>
|
311
|
</dependency>
|
312
|
</dependencies>
|
313
|
<configuration>
|
314
|
<includes>ReferenceDocumentation.xml</includes>
|
315
|
<chunkedOutput>true</chunkedOutput>
|
316
|
<htmlStylesheet>resources/css/html.css</htmlStylesheet>
|
317
|
<xincludeSupported>true</xincludeSupported>
|
318
|
<!--<htmlCustomization>src/docbkx/resources/xsl/html_chunk.xsl</htmlCustomization> -->
|
319
|
<!-- if anyone can get the xsl-fo customization to work properly,
|
320
|
then by all means use it <foCustomization>src/docbkx/resources/xsl/fopdf.xsl</foCustomization> -->
|
321
|
<entities>
|
322
|
<entity>
|
323
|
<name>version</name>
|
324
|
<value>${project.version}</value>
|
325
|
</entity>
|
326
|
</entities>
|
327
|
<!--We want the final documentation and the required resources
|
328
|
to end up in the right place -->
|
329
|
<postProcess>
|
330
|
<copy todir="target/site/reference">
|
331
|
<fileset dir="target/docbkx">
|
332
|
<include name="**/*.html" />
|
333
|
<include name="**/*.pdf" />
|
334
|
</fileset>
|
335
|
</copy>
|
336
|
<copy todir="target/site/reference/html">
|
337
|
<fileset dir="src/docbkx">
|
338
|
<include name="**/*.css" />
|
339
|
<include name="**/*.png" />
|
340
|
<include name="**/*.gif" />
|
341
|
<include name="**/*.jpg" />
|
342
|
</fileset>
|
343
|
</copy>
|
344
|
</postProcess>
|
345
|
</configuration>
|
346
|
</plugin>
|
347
|
<plugin>
|
348
|
<groupId>org.codehaus.mojo</groupId>
|
349
|
<artifactId>wagon-maven-plugin</artifactId>
|
350
|
<version>2.0.2</version>
|
351
|
<configuration>
|
352
|
<fromDir>${project.build.directory}/docbkx/</fromDir>
|
353
|
<includes>**/*</includes>
|
354
|
<excludes />
|
355
|
<url>scpexe://cybertaxonomy.org</url>
|
356
|
<serverId>cybertaxonomy.eu</serverId>
|
357
|
<toDir>var/www/wp5.e-taxonomy.eu/cdmlib/reference/${project.version}</toDir>
|
358
|
</configuration>
|
359
|
<executions>
|
360
|
<execution>
|
361
|
<id>upload-reference-documentation</id>
|
362
|
<phase>site-deploy</phase>
|
363
|
<goals>
|
364
|
<goal>upload</goal>
|
365
|
</goals>
|
366
|
</execution>
|
367
|
</executions>
|
368
|
</plugin>
|
369
|
<plugin>
|
370
|
<groupId>org.apache.maven.plugins</groupId>
|
371
|
<artifactId>maven-release-plugin</artifactId>
|
372
|
<version>2.5.3</version>
|
373
|
<configuration>
|
374
|
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
|
375
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
376
|
<preparationGoals>clean verify install</preparationGoals>
|
377
|
<goals>deploy</goals><!-- skipping site-deploy by explicitly configuring
|
378
|
the goal here -->
|
379
|
<tagBase>https://dev.e-taxonomy.eu/gitweb/cdmlib.git/tags</tagBase>
|
380
|
</configuration>
|
381
|
</plugin>
|
382
|
<plugin>
|
383
|
<!-- groupId>ch.dvbern.oss.maven.jgitflow</groupId>
|
384
|
<artifactId>jgitflow-maven-plugin</artifactId>
|
385
|
<version>1.0-m8</version> -->
|
386
|
<groupId>external.atlassian.jgitflow</groupId>
|
387
|
<artifactId>jgitflow-maven-plugin</artifactId>
|
388
|
<version>1.0-m6</version>
|
389
|
<configuration>
|
390
|
<pushHotfixes>true</pushHotfixes>
|
391
|
<pushReleases>true</pushReleases>
|
392
|
<enableSshAgent>true</enableSshAgent>
|
393
|
<allowSnapshots>true</allowSnapshots>
|
394
|
<allowUntracked>true</allowUntracked>
|
395
|
</configuration>
|
396
|
<dependencies>
|
397
|
<!--
|
398
|
upgrading dependency jsch.agent.version of jgit-flow plugin to 0.1.53
|
399
|
in order have ssl key exchange algorithms compatible with openssh 6.7
|
400
|
-->
|
401
|
<dependency>
|
402
|
<groupId>com.jcraft</groupId>
|
403
|
<artifactId>jsch</artifactId>
|
404
|
<version>0.1.55</version>
|
405
|
</dependency>
|
406
|
</dependencies>
|
407
|
</plugin>
|
408
|
<plugin>
|
409
|
<groupId>org.apache.maven.plugins</groupId>
|
410
|
<artifactId>maven-enforcer-plugin</artifactId>
|
411
|
<version>3.1.0</version>
|
412
|
<executions>
|
413
|
<execution>
|
414
|
<id>enforce</id>
|
415
|
<configuration>
|
416
|
<fail>true</fail>
|
417
|
<skip>false</skip>
|
418
|
<rules>
|
419
|
<dependencyConvergence />
|
420
|
<requireMavenVersion>
|
421
|
<version>[3.6.0,)</version>
|
422
|
</requireMavenVersion>
|
423
|
</rules>
|
424
|
</configuration>
|
425
|
<goals>
|
426
|
<goal>enforce</goal>
|
427
|
<!-- Binds by default to the lifecycle phase: validate -->
|
428
|
</goals>
|
429
|
</execution>
|
430
|
</executions>
|
431
|
</plugin>
|
432
|
</plugins>
|
433
|
<extensions>
|
434
|
<extension>
|
435
|
<groupId>org.apache.maven.wagon</groupId>
|
436
|
<artifactId>wagon-scm</artifactId>
|
437
|
<version>3.5.1</version>
|
438
|
</extension>
|
439
|
<extension>
|
440
|
<groupId>org.apache.maven.wagon</groupId>
|
441
|
<artifactId>wagon-ssh</artifactId>
|
442
|
<version>3.5.1</version>
|
443
|
</extension>
|
444
|
<extension>
|
445
|
<groupId>org.apache.maven.wagon</groupId>
|
446
|
<artifactId>wagon-ssh-external</artifactId>
|
447
|
<version>3.5.1</version>
|
448
|
</extension>
|
449
|
<extension>
|
450
|
<groupId>org.apache.maven.scm</groupId>
|
451
|
<artifactId>maven-scm-manager-plexus</artifactId>
|
452
|
<version>1.12.2</version>
|
453
|
</extension>
|
454
|
<extension>
|
455
|
<groupId>org.apache.maven.scm</groupId>
|
456
|
<artifactId>maven-scm-provider-svnexe</artifactId>
|
457
|
<version>1.12.2</version>
|
458
|
</extension>
|
459
|
<!-- WebDAV plugin to upload snapshots -->
|
460
|
<extension>
|
461
|
<groupId>org.apache.maven.wagon</groupId>
|
462
|
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
463
|
<version>3.5.1</version>
|
464
|
</extension>
|
465
|
</extensions>
|
466
|
<pluginManagement>
|
467
|
<plugins>
|
468
|
<plugin>
|
469
|
<groupId>org.apache.maven.plugins</groupId>
|
470
|
<artifactId>maven-antrun-plugin</artifactId>
|
471
|
<version>3.0.0</version>
|
472
|
</plugin>
|
473
|
</plugins>
|
474
|
</pluginManagement>
|
475
|
</build>
|
476
|
<reporting>
|
477
|
<plugins>
|
478
|
<plugin>
|
479
|
<!-- you will want to start by publishing your classes' Javadocs -->
|
480
|
<groupId>org.apache.maven.plugins</groupId>
|
481
|
<artifactId>maven-javadoc-plugin</artifactId>
|
482
|
<version>3.3.1</version>
|
483
|
<configuration>
|
484
|
<detectLinks>true</detectLinks>
|
485
|
<doclint>${doclint}</doclint>
|
486
|
</configuration>
|
487
|
</plugin>
|
488
|
<plugin>
|
489
|
<!-- this will generate an indexed and cross-referenced HTML version
|
490
|
of your source code -->
|
491
|
<groupId>org.apache.maven.plugins</groupId>
|
492
|
<artifactId>maven-jxr-plugin</artifactId>
|
493
|
<version>3.3.1</version>
|
494
|
</plugin>
|
495
|
<plugin>
|
496
|
<!-- if you use @todo tags to remind you of things to be done (which
|
497
|
is a good coding practice), the taglist report will generate a list of all
|
498
|
the items marked @todo or TODO -->
|
499
|
<groupId>org.codehaus.mojo</groupId>
|
500
|
<artifactId>taglist-maven-plugin</artifactId>
|
501
|
<version>2.4</version>
|
502
|
</plugin>
|
503
|
<plugin>
|
504
|
<!-- Test coverage can be a useful indication of the quality of your
|
505
|
unit tests. It basically tells you how much of your code is actually run
|
506
|
by your unit tests, which, in turn, can give you a good idea of the tests'
|
507
|
quality -->
|
508
|
<groupId>org.codehaus.mojo</groupId>
|
509
|
<artifactId>cobertura-maven-plugin</artifactId>
|
510
|
<version>2.7</version>
|
511
|
<!-- <executions> <execution> <id>clean</id> <phase>clean</phase>
|
512
|
<goals> <goal>clean</goal> </goals> </execution> </executions> -->
|
513
|
</plugin>
|
514
|
<!-- -->
|
515
|
<plugin>
|
516
|
<groupId>org.apache.maven.plugins</groupId>
|
517
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
518
|
<version>3.1.2</version>
|
519
|
<configuration>
|
520
|
<!-- when the dependencyLocations option is enabled maven will
|
521
|
determine if resources are located within a given repository. If that repository
|
522
|
doesn’t exist anyomore or is just terribly slow and will produce tons of
|
523
|
line in the log starting with: '[ERROR] Unable to determine if resource ...'
|
524
|
This will slow down site build drastically, therefore we disable this option
|
525
|
here. -->
|
526
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
527
|
</configuration>
|
528
|
<!-- just the deafault <reportSets> <reportSet> <reports> <report>dependencies</report>
|
529
|
<report>project-team</report> <report>mailing-list</report> <report>cim</report>
|
530
|
<report>issue-tracking</report> <report>license</report> <report>scm</report>
|
531
|
</reports> </reportSet> </reportSets> -->
|
532
|
</plugin>
|
533
|
<!-- The changes-maven-plugin plug-in uses a special XML file (src/changes/changes.xml)
|
534
|
to track releases and changes in each release -->
|
535
|
<plugin>
|
536
|
<groupId>org.apache.maven.plugins</groupId>
|
537
|
<artifactId>maven-changes-plugin</artifactId>
|
538
|
<version>2.12.1</version>
|
539
|
<configuration>
|
540
|
<issueLinkTemplatePerSystem>
|
541
|
<default>%URL%/ticket/%ISSUE%</default>
|
542
|
</issueLinkTemplatePerSystem>
|
543
|
</configuration>
|
544
|
<reportSets>
|
545
|
<reportSet>
|
546
|
<reports>
|
547
|
<report>changes-report</report>
|
548
|
</reports>
|
549
|
</reportSet>
|
550
|
</reportSets>
|
551
|
</plugin>
|
552
|
<!-- The changelog plug-in generates a nice report describing which
|
553
|
files have been changed and by whom -->
|
554
|
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>changelog-maven-plugin</artifactId>
|
555
|
</plugin> -->
|
556
|
</plugins>
|
557
|
|
558
|
</reporting>
|
559
|
<!-- DISTRIBUTION MANAGEMENT -->
|
560
|
<distributionManagement>
|
561
|
<site>
|
562
|
<id>cybertaxonomy.eu</id>
|
563
|
<name>CDM Library Website</name>
|
564
|
<url>scpexe://cybertaxonomy.org/var/www/wp5.e-taxonomy.eu/cdmlib/</url>
|
565
|
</site>
|
566
|
<repository>
|
567
|
<uniqueVersion>false</uniqueVersion>
|
568
|
<id>cybertaxonomy.eu</id>
|
569
|
<name>Edit Maven Repository</name>
|
570
|
<url>scpexe://cybertaxonomy.org/var/www/wp5.e-taxonomy.eu/mavenrepo/</url>
|
571
|
<layout>default</layout>
|
572
|
</repository>
|
573
|
</distributionManagement>
|
574
|
<!-- **** DEPENDENCIES **** -->
|
575
|
<dependencies>
|
576
|
<dependency>
|
577
|
<!-- junit is required for all module tests, also those not depending on cdmlib-test, so it is added here on parent level with test scope -->
|
578
|
<groupId>junit</groupId>
|
579
|
<artifactId>junit</artifactId>
|
580
|
<scope>test</scope>
|
581
|
</dependency>
|
582
|
</dependencies>
|
583
|
<dependencyManagement>
|
584
|
<dependencies>
|
585
|
<dependency>
|
586
|
<groupId>eu.etaxonomy</groupId>
|
587
|
<artifactId>cdmlib-commons</artifactId>
|
588
|
<version>${project.version}</version>
|
589
|
</dependency>
|
590
|
<dependency>
|
591
|
<groupId>eu.etaxonomy</groupId>
|
592
|
<artifactId>cdmlib-model</artifactId>
|
593
|
<version>${project.version}</version>
|
594
|
</dependency>
|
595
|
<dependency>
|
596
|
<groupId>eu.etaxonomy</groupId>
|
597
|
<artifactId>cdmlib-api</artifactId>
|
598
|
<version>${project.version}</version>
|
599
|
</dependency>
|
600
|
<dependency>
|
601
|
<groupId>eu.etaxonomy</groupId>
|
602
|
<artifactId>cdmlib-persistence</artifactId>
|
603
|
<version>${project.version}</version>
|
604
|
</dependency>
|
605
|
<dependency>
|
606
|
<groupId>eu.etaxonomy</groupId>
|
607
|
<artifactId>cdmlib-services</artifactId>
|
608
|
<version>${project.version}</version>
|
609
|
</dependency>
|
610
|
<dependency>
|
611
|
<groupId>eu.etaxonomy</groupId>
|
612
|
<artifactId>cdmlib-io</artifactId>
|
613
|
<version>${project.version}</version>
|
614
|
</dependency>
|
615
|
<dependency>
|
616
|
<groupId>eu.etaxonomy</groupId>
|
617
|
<artifactId>cdmlib-remote</artifactId>
|
618
|
<version>${project.version}</version>
|
619
|
</dependency>
|
620
|
<dependency>
|
621
|
<groupId>eu.etaxonomy</groupId>
|
622
|
<artifactId>cdmlib-remote-webapp</artifactId>
|
623
|
<version>${project.version}</version>
|
624
|
</dependency>
|
625
|
<dependency>
|
626
|
<groupId>eu.etaxonomy</groupId>
|
627
|
<artifactId>cdm-server</artifactId>
|
628
|
<version>${project.version}</version>
|
629
|
</dependency>
|
630
|
<dependency>
|
631
|
<groupId>eu.etaxonomy</groupId>
|
632
|
<artifactId>cdmlib-ext</artifactId>
|
633
|
<version>${project.version}</version>
|
634
|
</dependency>
|
635
|
<dependency>
|
636
|
<groupId>eu.etaxonomy</groupId>
|
637
|
<artifactId>cdmlib-print</artifactId>
|
638
|
<version>${project.version}</version>
|
639
|
</dependency>
|
640
|
|
641
|
<!--*********** JAXB********* -->
|
642
|
<dependency>
|
643
|
<groupId>jakarta.xml.bind</groupId>
|
644
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
645
|
<version>${jaxb.version}</version> <!-- not sure if jaxb.version is always the same -->
|
646
|
</dependency>
|
647
|
<!-- <dependency> -->
|
648
|
<!-- replaced by jakarta.xml.bind-api -->
|
649
|
<!-- <groupId>javax.xml.bind</groupId> -->
|
650
|
<!-- <artifactId>jaxb-api</artifactId> -->
|
651
|
<!-- <version>2.3.1</version> -->
|
652
|
<!-- checked 2020-08 -->
|
653
|
<!-- </dependency> -->
|
654
|
<dependency>
|
655
|
<!-- dependency for jaxb-api -->
|
656
|
<groupId>javax.activation</groupId>
|
657
|
<artifactId>javax.activation-api</artifactId>
|
658
|
<version>1.2.0</version>
|
659
|
<!-- checked 2020-08 -->
|
660
|
</dependency>
|
661
|
<dependency>
|
662
|
<groupId>org.glassfish.jaxb</groupId>
|
663
|
<artifactId>jaxb-runtime</artifactId>
|
664
|
<version>${jaxb.version}</version>
|
665
|
</dependency>
|
666
|
<dependency>
|
667
|
<groupId>org.glassfish.jaxb</groupId>
|
668
|
<artifactId>jaxb-jxc</artifactId>
|
669
|
<version>${jaxb.version}</version>
|
670
|
</dependency>
|
671
|
<dependency>
|
672
|
<!-- currently required as xsom references older version -->
|
673
|
<groupId>com.sun.xml.bind.external</groupId>
|
674
|
<artifactId>relaxng-datatype</artifactId>
|
675
|
<version>${jaxb.version}</version>
|
676
|
</dependency>
|
677
|
<dependency>
|
678
|
<!-- jaxb-runtime dependency -->
|
679
|
<groupId>jakarta.activation</groupId>
|
680
|
<artifactId>jakarta.activation-api</artifactId>
|
681
|
<version>1.2.2</version>
|
682
|
</dependency>
|
683
|
<!-- JAXB END -->
|
684
|
|
685
|
<dependency>
|
686
|
<!-- only for version management org.apache.ant:ant depends in different versions from
|
687
|
org.unitils:unitils-easymock:3.4.2 and org.glassfish.jaxb:jaxb-jxc:2.2.11 -->
|
688
|
<groupId>org.apache.ant</groupId>
|
689
|
<artifactId>ant</artifactId>
|
690
|
<version>1.10.12</version>
|
691
|
</dependency>
|
692
|
<!-- ******* hibernate uses slf4j ******* -->
|
693
|
<dependency>
|
694
|
<groupId>org.slf4j</groupId>
|
695
|
<artifactId>slf4j-api</artifactId>
|
696
|
<version>${slf4j.version}</version>
|
697
|
</dependency>
|
698
|
<dependency>
|
699
|
<groupId>org.apache.logging.log4j</groupId>
|
700
|
<artifactId>log4j-slf4j-impl</artifactId>
|
701
|
<version>${log4j.version}</version>
|
702
|
</dependency>
|
703
|
<!-- dozer depends on jcl-over-slf4j -->
|
704
|
<dependency>
|
705
|
<groupId>org.slf4j</groupId>
|
706
|
<artifactId>jcl-over-slf4j</artifactId>
|
707
|
<version>${slf4j.version}</version>
|
708
|
</dependency>
|
709
|
|
710
|
<!-- ******* testing ******* -->
|
711
|
<dependency>
|
712
|
<groupId>junit</groupId>
|
713
|
<artifactId>junit</artifactId>
|
714
|
<version>4.13.2</version>
|
715
|
<scope>test</scope>
|
716
|
</dependency>
|
717
|
<dependency>
|
718
|
<groupId>com.carrotsearch</groupId>
|
719
|
<artifactId>junit-benchmarks</artifactId>
|
720
|
<version>0.7.2</version>
|
721
|
<scope>test</scope>
|
722
|
</dependency>
|
723
|
<dependency>
|
724
|
<groupId>org.unitils</groupId>
|
725
|
<artifactId>unitils-core</artifactId>
|
726
|
<version>${unitils.version}</version>
|
727
|
<!-- <scope>test</scope> unscoped since we need this dependency at
|
728
|
compile time in persistence for H2DbSupport.java -->
|
729
|
<exclusions>
|
730
|
<exclusion>
|
731
|
<!-- we use jcl-over-slf4j instead -->
|
732
|
<groupId>commons-logging</groupId>
|
733
|
<artifactId>commons-logging</artifactId>
|
734
|
</exclusion>
|
735
|
</exclusions>
|
736
|
</dependency>
|
737
|
<dependency>
|
738
|
<groupId>org.unitils</groupId>
|
739
|
<artifactId>unitils-database</artifactId>
|
740
|
<version>${unitils.version}</version>
|
741
|
<scope>test</scope>
|
742
|
<exclusions>
|
743
|
<exclusion>
|
744
|
<groupId>org.springframework</groupId>
|
745
|
<artifactId>spring-jdbc</artifactId>
|
746
|
</exclusion>
|
747
|
</exclusions>
|
748
|
</dependency>
|
749
|
<dependency>
|
750
|
<groupId>org.unitils</groupId>
|
751
|
<artifactId>unitils-dbmaintainer</artifactId>
|
752
|
<version>${unitils.version}</version>
|
753
|
<!-- <scope>test</scope> -->
|
754
|
<exclusions>
|
755
|
<exclusion>
|
756
|
<groupId>org.hibernate</groupId>
|
757
|
<artifactId>hibernate</artifactId>
|
758
|
</exclusion>
|
759
|
<exclusion>
|
760
|
<!-- we use log4j-slf4j-impl -->
|
761
|
<groupId>org.slf4j</groupId>
|
762
|
<artifactId>slf4j-nop</artifactId>
|
763
|
</exclusion>
|
764
|
</exclusions>
|
765
|
</dependency>
|
766
|
<dependency>
|
767
|
<groupId>org.objenesis</groupId>
|
768
|
<artifactId>objenesis</artifactId>
|
769
|
<version>3.2</version>
|
770
|
</dependency>
|
771
|
<dependency>
|
772
|
<groupId>org.unitils</groupId>
|
773
|
<artifactId>unitils-dbunit</artifactId>
|
774
|
<version>${unitils.version}</version>
|
775
|
<!-- <scope>test</scope> -->
|
776
|
</dependency>
|
777
|
<dependency>
|
778
|
<groupId>org.unitils</groupId>
|
779
|
<artifactId>unitils-easymock</artifactId>
|
780
|
<version>${unitils.version}</version>
|
781
|
<!-- <scope>test</scope> -->
|
782
|
</dependency>
|
783
|
<dependency>
|
784
|
<groupId>org.unitils</groupId>
|
785
|
<artifactId>unitils-mock</artifactId>
|
786
|
<version>${unitils.version}</version>
|
787
|
<!-- <scope>test</scope> -->
|
788
|
</dependency>
|
789
|
<dependency>
|
790
|
<groupId>org.unitils</groupId>
|
791
|
<artifactId>unitils-inject</artifactId>
|
792
|
<version>${unitils.version}</version>
|
793
|
<!-- <scope>test</scope> -->
|
794
|
</dependency>
|
795
|
<dependency>
|
796
|
<groupId>org.unitils</groupId>
|
797
|
<artifactId>unitils-orm</artifactId>
|
798
|
<version>${unitils.version}</version>
|
799
|
<!-- <scope>test</scope> -->
|
800
|
<exclusions>
|
801
|
<exclusion>
|
802
|
<groupId>javax.persistence</groupId>
|
803
|
<artifactId>persistence-api</artifactId>
|
804
|
</exclusion>
|
805
|
</exclusions>
|
806
|
</dependency>
|
807
|
<dependency>
|
808
|
<groupId>org.unitils</groupId>
|
809
|
<artifactId>unitils-spring</artifactId>
|
810
|
<version>${unitils.version}</version>
|
811
|
<!-- <scope>test</scope> -->
|
812
|
</dependency>
|
813
|
<dependency>
|
814
|
<groupId>xmlunit</groupId>
|
815
|
<artifactId>xmlunit</artifactId>
|
816
|
<version>1.6</version>
|
817
|
<!-- <scope>test</scope> -->
|
818
|
</dependency>
|
819
|
<!-- <dependency>
|
820
|
<groupId>org.dbunit</groupId>
|
821
|
<artifactId>dbunit</artifactId>
|
822
|
<version>2.4.9</version> -->
|
823
|
<!-- <scope>test</scope> -->
|
824
|
<!-- </dependency> -->
|
825
|
<!-- dependency of unitils-database, but with lower number there ,
|
826
|
higher number needed for compatibility with current hibernate and Java 1.6
|
827
|
PreparedStatement -->
|
828
|
<dependency>
|
829
|
<!-- currently still needed by cdmlib-persistence, once removed, scope should be set to test -->
|
830
|
<groupId>commons-dbcp</groupId>
|
831
|
<artifactId>commons-dbcp</artifactId>
|
832
|
<version>1.4</version>
|
833
|
<!-- <scope>test</scope> -->
|
834
|
</dependency>
|
835
|
<dependency>
|
836
|
<!-- currently still needed by cdmlib-persistence commons-dbcp dependency, once removed, scope should be set to test -->
|
837
|
<groupId>commons-pool</groupId>
|
838
|
<artifactId>commons-pool</artifactId>
|
839
|
<version>1.6</version>
|
840
|
<!-- <scope>test</scope> -->
|
841
|
</dependency>
|
842
|
<dependency>
|
843
|
<groupId>eu.etaxonomy</groupId>
|
844
|
<artifactId>cdmlib-test</artifactId>
|
845
|
<scope>test</scope>
|
846
|
<version>${project.version}</version>
|
847
|
</dependency>
|
848
|
<dependency>
|
849
|
<!-- used in cdmlib-services for the EmailSendTest -->
|
850
|
<groupId>org.subethamail</groupId>
|
851
|
<artifactId>subethasmtp</artifactId>
|
852
|
<version>3.1.7</version>
|
853
|
<scope>test</scope>
|
854
|
</dependency>
|
855
|
<dependency>
|
856
|
<groupId>javax.activation</groupId>
|
857
|
<artifactId>activation</artifactId>
|
858
|
<version>1.1.1</version>
|
859
|
</dependency>
|
860
|
<!-- ******* aspect ******* -->
|
861
|
<dependency>
|
862
|
<!-- not really needed as long as aspectjweaver is on classpath which is a superset of aspectjrt -->
|
863
|
<groupId>org.aspectj</groupId>
|
864
|
<artifactId>aspectjrt</artifactId>
|
865
|
<version>${aspectj.version}</version>
|
866
|
</dependency>
|
867
|
<dependency>
|
868
|
<groupId>org.aspectj</groupId>
|
869
|
<artifactId>aspectjweaver</artifactId>
|
870
|
<version>${aspectj.version}</version>
|
871
|
</dependency>
|
872
|
<!-- ******* VARIOUS ******* -->
|
873
|
<dependency>
|
874
|
<groupId>xml-resolver</groupId>
|
875
|
<artifactId>xml-resolver</artifactId>
|
876
|
<version>1.2</version>
|
877
|
<!-- checked 2020-08 -->
|
878
|
</dependency>
|
879
|
|
880
|
<dependency>
|
881
|
<!-- should not be in use anymore -->
|
882
|
<groupId>log4j</groupId>
|
883
|
<artifactId>log4j</artifactId>
|
884
|
<version>1.2.17</version>
|
885
|
</dependency>
|
886
|
<dependency>
|
887
|
<groupId>org.apache.logging.log4j</groupId>
|
888
|
<artifactId>log4j-core</artifactId>
|
889
|
<version>${log4j.version}</version>
|
890
|
</dependency>
|
891
|
<dependency>
|
892
|
<groupId>org.apache.logging.log4j</groupId>
|
893
|
<artifactId>log4j-api</artifactId>
|
894
|
<version>${log4j.version}</version>
|
895
|
</dependency>
|
896
|
|
897
|
<dependency>
|
898
|
<groupId>net.sf.opencsv</groupId>
|
899
|
<artifactId>opencsv</artifactId>
|
900
|
<version>2.3</version>
|
901
|
</dependency>
|
902
|
<dependency>
|
903
|
<groupId>org.osgi</groupId>
|
904
|
<artifactId>osgi.core</artifactId>
|
905
|
<version>8.0.0</version>
|
906
|
</dependency>
|
907
|
<dependency>
|
908
|
<groupId>org.osgi</groupId>
|
909
|
<!-- for those dependencies linking to the old structure
|
910
|
TODO better use exclusion but need to check if this is possible here -->
|
911
|
<artifactId>org.osgi.core</artifactId>
|
912
|
<version>6.0.0</version>
|
913
|
</dependency>
|
914
|
<dependency>
|
915
|
<groupId>cglib</groupId>
|
916
|
<artifactId>cglib-nodep</artifactId>
|
917
|
<version>${cglib.version}</version>
|
918
|
</dependency>
|
919
|
<!-- <dependency> -->
|
920
|
<!-- we try to have only dependencies to cglib-nodep to reduce size and to avoid
|
921
|
having 2 similar libraries. #9206 -->
|
922
|
<!-- <groupId>cglib</groupId> -->
|
923
|
<!-- <artifactId>cglib</artifactId> -->
|
924
|
<!-- <version>${cglib.version}</version> -->
|
925
|
<!-- </dependency> -->
|
926
|
<dependency>
|
927
|
<groupId>commons-lang</groupId>
|
928
|
<artifactId>commons-lang</artifactId>
|
929
|
<version>2.6</version>
|
930
|
</dependency>
|
931
|
<dependency>
|
932
|
<groupId>org.apache.commons</groupId>
|
933
|
<artifactId>commons-lang3</artifactId>
|
934
|
<version>3.12.0</version>
|
935
|
</dependency>
|
936
|
<dependency>
|
937
|
<groupId>commons-collections</groupId>
|
938
|
<artifactId>commons-collections</artifactId>
|
939
|
<version>3.2.2</version>
|
940
|
</dependency>
|
941
|
<dependency>
|
942
|
<groupId>org.apache.httpcomponents</groupId>
|
943
|
<artifactId>httpclient</artifactId>
|
944
|
<version>${httpcomponents.version}</version>
|
945
|
<exclusions>
|
946
|
<exclusion>
|
947
|
<!-- we use jcl-over-slf4j instead -->
|
948
|
<groupId>commons-logging</groupId>
|
949
|
<artifactId>commons-logging</artifactId>
|
950
|
</exclusion>
|
951
|
</exclusions>
|
952
|
</dependency>
|
953
|
<dependency>
|
954
|
<groupId>org.apache.httpcomponents</groupId>
|
955
|
<artifactId>httpcore</artifactId>
|
956
|
<!-- Note: version differs from default httpcomponents version -->
|
957
|
<version>4.4.15</version>
|
958
|
</dependency>
|
959
|
<dependency>
|
960
|
<groupId>commons-io</groupId>
|
961
|
<artifactId>commons-io</artifactId>
|
962
|
<version>2.11.0</version>
|
963
|
</dependency>
|
964
|
<dependency>
|
965
|
<groupId>org.apache.commons</groupId>
|
966
|
<artifactId>commons-compress</artifactId>
|
967
|
<version>1.21</version>
|
968
|
</dependency>
|
969
|
<dependency>
|
970
|
<groupId>org.checkerframework</groupId>
|
971
|
<artifactId>checker-qual</artifactId>
|
972
|
<version>3.21.1</version>
|
973
|
</dependency>
|
974
|
<dependency>
|
975
|
<groupId>commons-codec</groupId>
|
976
|
<artifactId>commons-codec</artifactId>
|
977
|
<version>1.15</version>
|
978
|
</dependency>
|
979
|
<!-- only for version management, hibernate-commons-annotations:4.0.1.Final
|
980
|
requires 3.1.0.CR2 , so we update
|
981
|
here to the latest version 3.4.1.Final -->
|
982
|
<dependency>
|
983
|
<groupId>org.jboss.logging</groupId>
|
984
|
<artifactId>jboss-logging</artifactId>
|
985
|
<!-- v3.5.0.Final requires java11 -->
|
986
|
<version>3.4.3.Final</version>
|
987
|
<!-- checked 2022-05 -->
|
988
|
</dependency>
|
989
|
<dependency>
|
990
|
<groupId>org.jboss.logging</groupId>
|
991
|
<artifactId>jboss-logging-annotations</artifactId>
|
992
|
<version>2.2.1.Final</version>
|
993
|
</dependency>
|
994
|
<dependency>
|
995
|
<groupId>org.jboss.logging</groupId>
|
996
|
<artifactId>jboss-logging-processor</artifactId>
|
997
|
<version>2.2.1.Final</version>
|
998
|
</dependency>
|
999
|
<!-- <dependency> -->
|
1000
|
<!-- see note in cdmib-persistence pom -->
|
1001
|
<!-- <groupId>javax.transaction</groupId> -->
|
1002
|
<!-- <artifactId>jta</artifactId> -->
|
1003
|
<!-- <version>1.1</version> -->
|
1004
|
<!-- </dependency> -->
|
1005
|
|
1006
|
<!-- TODO xerces xmlParserAPIs duplicates many classes from jre and
|
1007
|
xml-apis. It is a dependency that comes with xom:xom -->
|
1008
|
<dependency>
|
1009
|
<groupId>org.apache.jena</groupId>
|
1010
|
<artifactId>jena-tdb</artifactId>
|
1011
|
<version>1.1.2</version>
|
1012
|
</dependency>
|
1013
|
|
1014
|
<dependency>
|
1015
|
<groupId>net.sf.ezmorph</groupId>
|
1016
|
<artifactId>ezmorph</artifactId>
|
1017
|
<version>1.0.6</version>
|
1018
|
</dependency>
|
1019
|
<dependency>
|
1020
|
<groupId>commons-beanutils</groupId>
|
1021
|
<artifactId>commons-beanutils</artifactId>
|
1022
|
<version>1.9.4</version>
|
1023
|
<exclusions>
|
1024
|
<exclusion>
|
1025
|
<!-- we use jcl-over-slf4j instead -->
|
1026
|
<groupId>commons-logging</groupId>
|
1027
|
<artifactId>commons-logging</artifactId>
|
1028
|
</exclusion>
|
1029
|
</exclusions>
|
1030
|
</dependency>
|
1031
|
<dependency>
|
1032
|
<groupId>net.sf.json-lib</groupId>
|
1033
|
<artifactId>json-lib</artifactId>
|
1034
|
<version>2.4</version>
|
1035
|
<!-- classifier required as json-lib exists on maven central as json-lib-2.4-jdk15.jar and xxx-jdk13.jar, see #9887 -->
|
1036
|
<classifier>jdk15</classifier>
|
1037
|
<exclusions>
|
1038
|
<exclusion>
|
1039
|
<!-- we use jcl-over-slf4j instead -->
|
1040
|
<groupId>commons-logging</groupId>
|
1041
|
<artifactId>commons-logging</artifactId>
|
1042
|
</exclusion>
|
1043
|
</exclusions>
|
1044
|
</dependency>
|
1045
|
<!-- media -->
|
1046
|
<dependency>
|
1047
|
<groupId>org.devlib.schmidt</groupId>
|
1048
|
<artifactId>imageinfo</artifactId>
|
1049
|
<version>1.9</version>
|
1050
|
</dependency>
|
1051
|
<dependency>
|
1052
|
<groupId>de.digitalcollections.iiif</groupId>
|
1053
|
<artifactId>iiif-apis</artifactId>
|
1054
|
<version>0.3.9</version>
|
1055
|
</dependency>
|
1056
|
<dependency>
|
1057
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
1058
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
1059
|
<version>${jackson.version}</version>
|
1060
|
</dependency>
|
1061
|
<dependency>
|
1062
|
<groupId>com.fasterxml.jackson.module</groupId>
|
1063
|
<artifactId>jackson-module-parameter-names</artifactId>
|
1064
|
<version>${jackson.version}</version>
|
1065
|
</dependency>
|
1066
|
<dependency>
|
1067
|
<groupId>org.apache.poi</groupId>
|
1068
|
<artifactId>poi</artifactId>
|
1069
|
<version>${poi.version}</version>
|
1070
|
</dependency>
|
1071
|
<dependency>
|
1072
|
<groupId>org.apache.poi</groupId>
|
1073
|
<artifactId>poi-ooxml</artifactId>
|
1074
|
<version>${poi.version}</version>
|
1075
|
</dependency>
|
1076
|
<dependency>
|
1077
|
<groupId>org.apache.poi</groupId>
|
1078
|
<artifactId>poi-ooxml-lite</artifactId>
|
1079
|
<version>${poi.version}</version>
|
1080
|
</dependency>
|
1081
|
<dependency>
|
1082
|
<groupId>org.apache.poi</groupId>
|
1083
|
<artifactId>poi-ooxml-full</artifactId>
|
1084
|
<version>${poi.version}</version>
|
1085
|
</dependency>
|
1086
|
<dependency>
|
1087
|
<!-- indirect poi-schema and doxia dependency -->
|
1088
|
<groupId>org.codehaus.plexus</groupId>
|
1089
|
<artifactId>plexus-classworlds</artifactId>
|
1090
|
<version>2.6.0</version>
|
1091
|
</dependency>
|
1092
|
<dependency>
|
1093
|
<groupId>org.codehaus.plexus</groupId>
|
1094
|
<artifactId>plexus-component-annotations</artifactId>
|
1095
|
<version>2.1.1</version>
|
1096
|
</dependency>
|
1097
|
<!-- <dependency> -->
|
1098
|
<!-- maybe needed in cdmlib-io, see https://poi.apache.org/help/faq.html question 3 on when to use ooxml-schemas and when poi-ooxml-schemas -->
|
1099
|
<!-- <groupId>org.apache.poi</groupId> -->
|
1100
|
<!-- <artifactId>ooxml-schemas</artifactId> -->
|
1101
|
<!-- <version>1.4</version> -->
|
1102
|
<!-- </dependency> -->
|
1103
|
<dependency>
|
1104
|
<groupId>org.apache.xmlbeans</groupId>
|
1105
|
<artifactId>xmlbeans</artifactId>
|
1106
|
<version>5.0.3</version>
|
1107
|
<!-- checked 2020-08 -->
|
1108
|
</dependency>
|
1109
|
<dependency>
|
1110
|
<groupId>org.docx4j</groupId>
|
1111
|
<artifactId>docx4j-JAXB-Internal</artifactId>
|
1112
|
<version>8.3.7</version>
|
1113
|
</dependency>
|
1114
|
<dependency>
|
1115
|
<!-- dependency of guava and docx4j -->
|
1116
|
<groupId>com.google.errorprone</groupId>
|
1117
|
<artifactId>error_prone_annotations</artifactId>
|
1118
|
<version>2.14.0</version>
|
1119
|
</dependency>
|
1120
|
<dependency>
|
1121
|
<!-- only for version management xalan depends in different versions from
|
1122
|
org.docx4j:docx4j:6.0.1 and xom:xom:1.2.5 -->
|
1123
|
<groupId>xalan</groupId>
|
1124
|
<artifactId>xalan</artifactId>
|
1125
|
<version>2.7.2</version>
|
1126
|
</dependency>
|
1127
|
<dependency>
|
1128
|
<!-- only for version management org.apache.xmlgraphics:xmlgraphics-commons depends in different versions from
|
1129
|
org.docx4j:docx4j:6.0.1 and org.apache.xmlgraphics:fop:1.1 -->
|
1130
|
<groupId>org.apache.xmlgraphics</groupId>
|
1131
|
<artifactId>xmlgraphics-commons</artifactId>
|
1132
|
<version>2.7</version>
|
1133
|
</dependency>
|
1134
|
<dependency>
|
1135
|
<groupId>org.apache.commons</groupId>
|
1136
|
<artifactId>commons-imaging</artifactId>
|
1137
|
<version>1.0-alpha3</version>
|
1138
|
</dependency>
|
1139
|
<dependency>
|
1140
|
<groupId>org.cybertaxonomy.media</groupId>
|
1141
|
<artifactId>media-info-model</artifactId>
|
1142
|
<version>1.2.0</version>
|
1143
|
</dependency>
|
1144
|
<!-- joda-time -->
|
1145
|
<dependency>
|
1146
|
<groupId>joda-time</groupId>
|
1147
|
<artifactId>joda-time</artifactId>
|
1148
|
<version>2.10.14</version>
|
1149
|
</dependency>
|
1150
|
<dependency>
|
1151
|
<groupId>org.jadira.usertype</groupId>
|
1152
|
<artifactId>usertype.core</artifactId>
|
1153
|
<version>7.0.0.CR1</version>
|
1154
|
</dependency>
|
1155
|
<!-- dependency of jadira usertype -->
|
1156
|
<dependency>
|
1157
|
<groupId>javax.enterprise</groupId>
|
1158
|
<artifactId>cdi-api</artifactId>
|
1159
|
<version>2.0.SP1</version>
|
1160
|
</dependency>
|
1161
|
|
1162
|
<dependency>
|
1163
|
<groupId>org.apache.lucene</groupId>
|
1164
|
<artifactId>lucene-core</artifactId>
|
1165
|
<version>${lucene.version}</version>
|
1166
|
</dependency>
|
1167
|
<dependency>
|
1168
|
<groupId>org.apache.lucene</groupId>
|
1169
|
<artifactId>lucene-suggest</artifactId>
|
1170
|
<version>${lucene.version}</version>
|
1171
|
</dependency>
|
1172
|
<dependency>
|
1173
|
<groupId>org.apache.lucene</groupId>
|
1174
|
<artifactId>lucene-analyzers-common</artifactId>
|
1175
|
<version>${lucene.version}</version>
|
1176
|
</dependency>
|
1177
|
<dependency>
|
1178
|
<groupId>org.apache.lucene</groupId>
|
1179
|
<artifactId>lucene-queryparser</artifactId>
|
1180
|
<version>${lucene.version}</version>
|
1181
|
</dependency>
|
1182
|
<dependency>
|
1183
|
<groupId>org.apache.lucene</groupId>
|
1184
|
<artifactId>lucene-highlighter</artifactId>
|
1185
|
<version>${lucene.version}</version>
|
1186
|
</dependency>
|
1187
|
<dependency>
|
1188
|
<groupId>org.apache.lucene</groupId>
|
1189
|
<artifactId>lucene-grouping</artifactId>
|
1190
|
<version>${lucene.version}</version>
|
1191
|
</dependency>
|
1192
|
<dependency>
|
1193
|
<groupId>org.apache.lucene</groupId>
|
1194
|
<artifactId>lucene-join</artifactId>
|
1195
|
<version>${lucene.version}</version>
|
1196
|
</dependency>
|
1197
|
<dependency>
|
1198
|
<groupId>org.apache.lucene</groupId>
|
1199
|
<artifactId>lucene-backward-codecs</artifactId>
|
1200
|
<version>${lucene.version}</version>
|
1201
|
</dependency>
|
1202
|
<dependency>
|
1203
|
<groupId>org.apache.lucene</groupId>
|
1204
|
<artifactId>lucene-misc</artifactId>
|
1205
|
<version>${lucene.version}</version>
|
1206
|
</dependency>
|
1207
|
<dependency>
|
1208
|
<groupId>org.apache.lucene</groupId>
|
1209
|
<artifactId>lucene-facet</artifactId>
|
1210
|
<version>${lucene.version}</version>
|
1211
|
</dependency>
|
1212
|
<dependency>
|
1213
|
<groupId>org.apache.lucene</groupId>
|
1214
|
<artifactId>lucene-sandbox</artifactId>
|
1215
|
<version>${lucene.version}</version>
|
1216
|
</dependency>
|
1217
|
|
1218
|
<dependency>
|
1219
|
<groupId>com.ibm.lsid</groupId>
|
1220
|
<artifactId>lsid-client</artifactId>
|
1221
|
<version>1.1.2</version>
|
1222
|
</dependency>
|
1223
|
<dependency>
|
1224
|
<groupId>com.ibm.lsid</groupId>
|
1225
|
<artifactId>lsid-server</artifactId>
|
1226
|
<version>1.1.2</version>
|
1227
|
</dependency>
|
1228
|
<dependency>
|
1229
|
<groupId>wsdl4j</groupId>
|
1230
|
<artifactId>wsdl4j</artifactId>
|
1231
|
<version>1.6.3</version>
|
1232
|
</dependency>
|
1233
|
<!-- <dependency> -->
|
1234
|
<!-- <groupId>net.sf.dozer</groupId> -->
|
1235
|
<!-- <artifactId>dozer</artifactId> -->
|
1236
|
<!-- <version>5.5.1</version> -->
|
1237
|
<!-- </dependency> -->
|
1238
|
<dependency>
|
1239
|
<groupId>com.github.dozermapper</groupId>
|
1240
|
<artifactId>dozer-core</artifactId>
|
1241
|
<version>${dozer.version}</version>
|
1242
|
</dependency>
|
1243
|
<dependency>
|
1244
|
<groupId>com.github.dozermapper</groupId>
|
1245
|
<artifactId>dozer-spring4</artifactId>
|
1246
|
<version>${dozer.version}</version>
|
1247
|
</dependency>
|
1248
|
<dependency>
|
1249
|
<groupId>net.sf.ehcache</groupId>
|
1250
|
<artifactId>ehcache</artifactId>
|
1251
|
<version>2.10.6</version>
|
1252
|
</dependency>
|
1253
|
<!-- ******* XML ******* -->
|
1254
|
<dependency>
|
1255
|
<!-- xml-apis seems to be ALMOST fully included in java8 but ElementTraversal seems to be missing, therefore SDDDocumentBuilder does not compile -->
|
1256
|
<groupId>xml-apis</groupId>
|
1257
|
<artifactId>xml-apis</artifactId>
|
1258
|
<!-- WARNING: do not upgrade to later versions 2.0.x of xml-apis -->
|
1259
|
<!-- since these are effectivly reloaded to the early beta version -->
|
1260
|
<!-- 1.0.b2 -->
|
1261
|
<version>1.4.01</version>
|
1262
|
</dependency>
|
1263
|
<dependency>
|
1264
|
<groupId>xerces</groupId>
|
1265
|
<artifactId>xercesImpl</artifactId>
|
1266
|
<version>2.12.2</version>
|
1267
|
<!-- checked 2022-06 -->
|
1268
|
</dependency>
|
1269
|
<dependency> <!-- required by cdmlib-print -->
|
1270
|
<groupId>org.apache.xmlgraphics</groupId>
|
1271
|
<artifactId>fop</artifactId>
|
1272
|
<version>2.7</version>
|
1273
|
<exclusions>
|
1274
|
<exclusion>
|
1275
|
<!-- we use jcl-over-slf4j instead -->
|
1276
|
<groupId>commons-logging</groupId>
|
1277
|
<artifactId>commons-logging</artifactId>
|
1278
|
</exclusion>
|
1279
|
</exclusions>
|
1280
|
</dependency>
|
1281
|
<dependency>
|
1282
|
<groupId>org.odftoolkit</groupId>
|
1283
|
<artifactId>odfdom-java</artifactId>
|
1284
|
<version>0.8.7</version>
|
1285
|
</dependency>
|
1286
|
<dependency>
|
1287
|
<!-- used in eu.etaxonomy.cdm.io.markup and for swagger -->
|
1288
|
<groupId>com.google.guava</groupId>
|
1289
|
<artifactId>guava</artifactId>
|
1290
|
<version>31.1-jre</version>
|
1291
|
</dependency>
|
1292
|
<dependency>
|
1293
|
<groupId>com.google.code.findbugs</groupId>
|
1294
|
<artifactId>jsr305</artifactId>
|
1295
|
<version>3.0.2</version>
|
1296
|
</dependency>
|
1297
|
<!-- last jdom 1.x version -->
|
1298
|
<dependency>
|
1299
|
<groupId>org.jdom</groupId>
|
1300
|
<artifactId>jdom</artifactId>
|
1301
|
<version>1.1.3</version>
|
1302
|
</dependency>
|
1303
|
<!-- jdom2 may exist in parallel to jdom(1) as it uses a different package structure -->
|
1304
|
<dependency>
|
1305
|
<groupId>org.jdom</groupId>
|
1306
|
<artifactId>jdom2</artifactId>
|
1307
|
<version>2.0.6</version>
|
1308
|
</dependency>
|
1309
|
<dependency>
|
1310
|
<groupId>com.thoughtworks.xstream</groupId>
|
1311
|
<artifactId>xstream</artifactId>
|
1312
|
<version>1.4.19</version>
|
1313
|
</dependency>
|
1314
|
<dependency>
|
1315
|
<!-- newer version exists for groupId org.ogce, need to check exclusions before moving -->
|
1316
|
<groupId>xpp3</groupId>
|
1317
|
<artifactId>xpp3</artifactId>
|
1318
|
<version>1.1.4c</version>
|
1319
|
</dependency>
|
1320
|
<!-- <dependency> -->
|
1321
|
<!-- stax is part of java8 and therefore not needed anymore -->
|
1322
|
<!-- <groupId>stax</groupId> -->
|
1323
|
<!-- <artifactId>stax</artifactId> -->
|
1324
|
<!-- <version>1.2.0</version> -->
|
1325
|
<!-- </dependency> -->
|
1326
|
<dependency>
|
1327
|
<groupId>xom</groupId>
|
1328
|
<artifactId>xom</artifactId>
|
1329
|
<version>1.3.7</version>
|
1330
|
<exclusions>
|
1331
|
<!-- need to exclude com.ibm.icu:icu4j since it contains an invalid
|
1332
|
file which causes the jetty-maven-plugin to fail see https://stackoverflow.com/questions/3026956/javassist-failure-in-hibernate-invalid-constant-type-60 -->
|
1333
|
<exclusion>
|
1334
|
<groupId>com.ibm.icu</groupId>
|
1335
|
<artifactId>icu4j</artifactId>
|
1336
|
</exclusion>
|
1337
|
</exclusions>
|
1338
|
</dependency>
|
1339
|
<!-- ******* SAXON (ViBRANT)******* -->
|
1340
|
<dependency>
|
1341
|
<groupId>net.sf.saxon</groupId>
|
1342
|
<artifactId>Saxon-HE</artifactId>
|
1343
|
<version>11.3</version>
|
1344
|
</dependency>
|
1345
|
<!-- ******* http components (ViBRANT)******* -->
|
1346
|
<dependency>
|
1347
|
<groupId>org.apache.httpcomponents</groupId>
|
1348
|
<artifactId>httpmime</artifactId>
|
1349
|
<version>${httpcomponents.version}</version>
|
1350
|
</dependency>
|
1351
|
<!-- ***** json ******************** -->
|
1352
|
<dependency>
|
1353
|
<groupId>org.json</groupId>
|
1354
|
<artifactId>json</artifactId>
|
1355
|
<version>20220320</version>
|
1356
|
</dependency>
|
1357
|
<!-- ******* HIBERNATE / EJB3 ******* -->
|
1358
|
<dependency>
|
1359
|
<groupId>org.hibernate.javax.persistence</groupId>
|
1360
|
<artifactId>hibernate-jpa-2.1-api</artifactId>
|
1361
|
<version>1.0.2.Final</version>
|
1362
|
</dependency>
|
1363
|
<dependency>
|
1364
|
<groupId>org.hibernate</groupId>
|
1365
|
<artifactId>hibernate-core</artifactId>
|
1366
|
<version>${hibernate.version}</version>
|
1367
|
</dependency>
|
1368
|
<dependency>
|
1369
|
<groupId>org.hibernate</groupId>
|
1370
|
<artifactId>hibernate-envers</artifactId>
|
1371
|
<version>${hibernate.version}</version>
|
1372
|
</dependency>
|
1373
|
<dependency>
|
1374
|
<groupId>org.hibernate</groupId>
|
1375
|
<artifactId>hibernate-c3p0</artifactId>
|
1376
|
<version>${hibernate.version}</version>
|
1377
|
</dependency>
|
1378
|
<dependency>
|
1379
|
<groupId>com.mchange</groupId>
|
1380
|
<artifactId>c3p0</artifactId>
|
1381
|
<!--
|
1382
|
IMPORTANT!!!
|
1383
|
when changing the version of this artifact, the
|
1384
|
version in cdm-server pom.xml must be changed
|
1385
|
the same otherwise db connections through jndi
|
1386
|
will not work!
|
1387
|
NOTE: not so critical anymore as we use cdmlib-db
|
1388
|
now for both projects
|
1389
|
-->
|
1390
|
<version>0.9.5.2</version>
|
1391
|
</dependency>
|
1392
|
<dependency>
|
1393
|
<groupId>com.mchange</groupId>
|
1394
|
<artifactId>mchange-commons-java</artifactId>
|
1395
|
<!-- mchange-commons-java needs to match the version as defined in the c3p0/pom.xml -->
|
1396
|
<version>0.2.11</version>
|
1397
|
</dependency>
|
1398
|
<dependency>
|
1399
|
<groupId>org.hibernate.common</groupId>
|
1400
|
<artifactId>hibernate-commons-annotations</artifactId>
|
1401
|
<version>5.1.2.Final</version>
|
1402
|
</dependency>
|
1403
|
<dependency>
|
1404
|
<groupId>org.hibernate</groupId>
|
1405
|
<artifactId>hibernate-search-orm</artifactId>
|
1406
|
<version>${hibernate-search.version}</version>
|
1407
|
</dependency>
|
1408
|
<dependency>
|
1409
|
<groupId>org.hibernate</groupId>
|
1410
|
<artifactId>hibernate-search-engine</artifactId>
|
1411
|
<version>${hibernate-search.version}</version>
|
1412
|
</dependency>
|
1413
|
|
1414
|
<dependency>
|
1415
|
<!-- used by hibernate as bytecode provider framework -->
|
1416
|
<groupId>net.bytebuddy</groupId>
|
1417
|
<artifactId>byte-buddy</artifactId>
|
1418
|
<version>1.12.10</version>
|
1419
|
</dependency>
|
1420
|
<!-- dependency of hibernate-core -->
|
1421
|
<dependency>
|
1422
|
<groupId>org.jboss.spec.javax.transaction</groupId>
|
1423
|
<artifactId>jboss-transaction-api_1.2_spec</artifactId>
|
1424
|
<version>1.1.1.Final</version>
|
1425
|
</dependency>
|
1426
|
<dependency>
|
1427
|
<!-- dependency of iiif-apis (and still by hibernate but will be removed in v5.6 as hibernate uses bytebuddy) -->
|
1428
|
<groupId>org.javassist</groupId>
|
1429
|
<artifactId>javassist</artifactId>
|
1430
|
<version>3.29.0-GA</version>
|
1431
|
</dependency>
|
1432
|
|
1433
|
<!-- ******* SPRING ******* -->
|
1434
|
<dependency>
|
1435
|
<groupId>org.springframework</groupId>
|
1436
|
<artifactId>spring-core</artifactId>
|
1437
|
<version>${spring.version}</version>
|
1438
|
<exclusions>
|
1439
|
<exclusion>
|
1440
|
<groupId>commons-logging</groupId>
|
1441
|
<artifactId>commons-logging</artifactId>
|
1442
|
</exclusion>
|
1443
|
</exclusions>
|
1444
|
</dependency>
|
1445
|
<dependency>
|
1446
|
<groupId>org.springframework</groupId>
|
1447
|
<artifactId>spring-context</artifactId>
|
1448
|
<version>${spring.version}</version>
|
1449
|
</dependency>
|
1450
|
<dependency>
|
1451
|
<groupId>org.springframework</groupId>
|
1452
|
<artifactId>spring-beans</artifactId>
|
1453
|
<version>${spring.version}</version>
|
1454
|
</dependency>
|
1455
|
<dependency>
|
1456
|
<groupId>org.springframework</groupId>
|
1457
|
<artifactId>spring-orm</artifactId>
|
1458
|
<version>${spring.version}</version>
|
1459
|
</dependency>
|
1460
|
<dependency>
|
1461
|
<groupId>org.springframework</groupId>
|
1462
|
<artifactId>spring-jdbc</artifactId>
|
1463
|
<version>${spring.version}</version>
|
1464
|
</dependency>
|
1465
|
<dependency>
|
1466
|
<groupId>org.springframework</groupId>
|
1467
|
<artifactId>spring-tx</artifactId>
|
1468
|
<version>${spring.version}</version>
|
1469
|
</dependency>
|
1470
|
<dependency>
|
1471
|
<groupId>org.springframework</groupId>
|
1472
|
<artifactId>spring-test</artifactId>
|
1473
|
<version>${spring.version}</version>
|
1474
|
</dependency>
|
1475
|
<dependency>
|
1476
|
<groupId>org.springframework</groupId>
|
1477
|
<artifactId>spring-web</artifactId>
|
1478
|
<version>${spring.version}</version>
|
1479
|
</dependency>
|
1480
|
<dependency>
|
1481
|
<groupId>org.springframework</groupId>
|
1482
|
<artifactId>spring-webmvc</artifactId>
|
1483
|
<version>${spring.version}</version>
|
1484
|
</dependency>
|
1485
|
<dependency>
|
1486
|
<groupId>org.springframework</groupId>
|
1487
|
<artifactId>spring-aop</artifactId>
|
1488
|
<version>${spring.version}</version>
|
1489
|
</dependency>
|
1490
|
<dependency>
|
1491
|
<groupId>org.springframework</groupId>
|
1492
|
<artifactId>spring-aspects</artifactId>
|
1493
|
<version>${spring.version}</version>
|
1494
|
</dependency>
|
1495
|
<dependency>
|
1496
|
<groupId>org.springframework</groupId>
|
1497
|
<artifactId>spring-expression</artifactId>
|
1498
|
<version>${spring.version}</version>
|
1499
|
</dependency>
|
1500
|
<dependency>
|
1501
|
<groupId>org.springframework</groupId>
|
1502
|
<artifactId>spring-context-support</artifactId>
|
1503
|
<version>${spring.version}</version>
|
1504
|
</dependency>
|
1505
|
<dependency>
|
1506
|
<groupId>org.springframework</groupId>
|
1507
|
<artifactId>spring-oxm</artifactId>
|
1508
|
<version>${spring.version}</version>
|
1509
|
</dependency>
|
1510
|
<dependency>
|
1511
|
<groupId>org.springframework.security</groupId>
|
1512
|
<artifactId>spring-security-core</artifactId>
|
1513
|
<version>${spring-security.version}</version>
|
1514
|
</dependency>
|
1515
|
<dependency>
|
1516
|
<groupId>org.springframework.security</groupId>
|
1517
|
<artifactId>spring-security-config</artifactId>
|
1518
|
<version>${spring-security.version}</version>
|
1519
|
</dependency>
|
1520
|
<dependency>
|
1521
|
<groupId>org.springframework.security</groupId>
|
1522
|
<artifactId>spring-security-web</artifactId>
|
1523
|
<version>${spring-security.version}</version>
|
1524
|
</dependency>
|
1525
|
<dependency>
|
1526
|
<groupId>org.springframework.security.oauth</groupId>
|
1527
|
<artifactId>spring-security-oauth2</artifactId>
|
1528
|
<version>${spring-security-oauth2.version}</version>
|
1529
|
</dependency>
|
1530
|
<dependency>
|
1531
|
<groupId>org.springframework.cloud</groupId>
|
1532
|
<artifactId>spring-cloud-security</artifactId>
|
1533
|
<version>${spring-security.version}</version>
|
1534
|
</dependency>
|
1535
|
<dependency>
|
1536
|
<!-- required by spring security core, but not needed anymore in spring security 5.x -->
|
1537
|
<groupId>aopalliance</groupId>
|
1538
|
<artifactId>aopalliance</artifactId>
|
1539
|
<version>1.0</version>
|
1540
|
</dependency>
|
1541
|
|
1542
|
<!-- ******* SERVLET/JSP/JSF ******* -->
|
1543
|
<dependency>
|
1544
|
<groupId>javax.servlet</groupId>
|
1545
|
<artifactId>javax.servlet-api</artifactId>
|
1546
|
<version>4.0.1</version>
|
1547
|
<!-- checked 2020-08 -->
|
1548
|
</dependency>
|
1549
|
<dependency>
|
1550
|
<!-- management needed for some older dependencies -->
|
1551
|
<!-- TODO check if possible to use exclusions -->
|
1552
|
<groupId>javax.servlet</groupId>
|
1553
|
<artifactId>servlet-api</artifactId>
|
1554
|
<version>2.5</version>
|
1555
|
</dependency>
|
1556
|
|
1557
|
|
1558
|
<!-- yourkit profiler api controller (used in ..) -->
|
1559
|
<dependency>
|
1560
|
<groupId>com.yourkit</groupId>
|
1561
|
<artifactId>yjp-controller-api-redist</artifactId>
|
1562
|
<version>2015-build-15086</version>
|
1563
|
<scope>test</scope>
|
1564
|
</dependency>
|
1565
|
<!-- For Validation -->
|
1566
|
<dependency>
|
1567
|
<groupId>javax.validation</groupId>
|
1568
|
<artifactId>validation-api</artifactId>
|
1569
|
<version>2.0.1.Final</version>
|
1570
|
<!-- checked 2020-08 -->
|
1571
|
</dependency>
|
1572
|
<dependency>
|
1573
|
<groupId>org.hibernate.validator</groupId>
|
1574
|
<artifactId>hibernate-validator</artifactId>
|
1575
|
<version>${hibernate-validator.version}</version>
|
1576
|
</dependency>
|
1577
|
<dependency>
|
1578
|
<groupId>com.fasterxml</groupId>
|
1579
|
<artifactId>classmate</artifactId>
|
1580
|
<version>1.5.1</version>
|
1581
|
<!-- checked 2020-08 -->
|
1582
|
</dependency>
|
1583
|
<dependency>
|
1584
|
<groupId>javax.el</groupId>
|
1585
|
<artifactId>javax.el-api</artifactId>
|
1586
|
<version>3.0.0</version>
|
1587
|
<!-- checked 2020-08 -->
|
1588
|
</dependency>
|
1589
|
<dependency>
|
1590
|
<groupId>jakarta.validation</groupId>
|
1591
|
<artifactId>jakarta.validation-api</artifactId>
|
1592
|
<version>3.0.2</version>
|
1593
|
<!-- checked 2022-06 -->
|
1594
|
</dependency>
|
1595
|
<dependency>
|
1596
|
<groupId>org.glassfish.web</groupId>
|
1597
|
<artifactId>javax.el</artifactId>
|
1598
|
<version>2.2.6</version>
|
1599
|
</dependency>
|
1600
|
<dependency>
|
1601
|
<groupId>org.hibernate.validator</groupId>
|
1602
|
<artifactId>hibernate-validator-cdi</artifactId>
|
1603
|
<version>${hibernate-validator.version}</version>
|
1604
|
</dependency>
|
1605
|
<dependency>
|
1606
|
<!-- not clear if needed, but if needed v8.0 should be used to avoid problems with javax.validation.BootstrapConfiguration -->
|
1607
|
<!-- it was a (currently excluded) transitiv dependency from org.geotools/gt-referencing used in cdmlib-ext -->
|
1608
|
<groupId>javax</groupId>
|
1609
|
<artifactId>javaee-api</artifactId>
|
1610
|
<version>8.0.1</version>
|
1611
|
</dependency>
|
1612
|
|
1613
|
<!-- for ikey-plus -->
|
1614
|
<dependency>
|
1615
|
<groupId>identificationKeyAPI</groupId>
|
1616
|
<artifactId>identificationKeyAPI</artifactId>
|
1617
|
<version>1.0</version> <!-- was <version>1.0-SNAPSHOT</version> -->
|
1618
|
</dependency>
|
1619
|
<dependency>
|
1620
|
<groupId>com.itextpdf</groupId>
|
1621
|
<artifactId>itextpdf</artifactId>
|
1622
|
<version>5.5.13.3</version>
|
1623
|
<scope>compile</scope>
|
1624
|
</dependency>
|
1625
|
<!-- AptView -->
|
1626
|
<dependency>
|
1627
|
<groupId>org.apache.maven.doxia</groupId>
|
1628
|
<artifactId>doxia-module-apt</artifactId>
|
1629
|
<version>${doxia.version}</version>
|
1630
|
</dependency>
|
1631
|
<dependency>
|
1632
|
<groupId>org.apache.maven.doxia</groupId>
|
1633
|
<artifactId>doxia-module-xhtml</artifactId>
|
1634
|
<version>${doxia.version}</version>
|
1635
|
</dependency>
|
1636
|
<dependency>
|
1637
|
<!-- managing version of plexus-utils to avoid multiple versions (3.0.15, 1.4.5) of the artifact -->
|
1638
|
<groupId>org.codehaus.plexus</groupId>
|
1639
|
<artifactId>plexus-utils</artifactId>
|
1640
|
<version>3.4.2</version>
|
1641
|
<!-- checked 2022-06 -->
|
1642
|
</dependency>
|
1643
|
<!-- swagger (rest service doc) -->
|
1644
|
<dependency>
|
1645
|
<groupId>io.swagger</groupId>
|
1646
|
<artifactId>swagger-annotations</artifactId>
|
1647
|
<!-- should match the springfox-swagger2 depends on -->
|
1648
|
<version>1.5.10</version>
|
1649
|
</dependency>
|
1650
|
|
1651
|
<!-- dependencies for swagger-springmvc, added explicitely -->
|
1652
|
<dependency>
|
1653
|
<groupId>com.fasterxml.jackson.core</groupId>
|
1654
|
<artifactId>jackson-databind</artifactId>
|
1655
|
<version>${jackson.version}</version>
|
1656
|
</dependency>
|
1657
|
<dependency>
|
1658
|
<groupId>com.fasterxml.jackson.core</groupId>
|
1659
|
<artifactId>jackson-core</artifactId>
|
1660
|
<version>${jackson.version}</version>
|
1661
|
</dependency>
|
1662
|
<dependency>
|
1663
|
<groupId>com.fasterxml.jackson.core</groupId>
|
1664
|
<artifactId>jackson-annotations</artifactId>
|
1665
|
<version>${jackson.version}</version>
|
1666
|
</dependency>
|
1667
|
<!-- END of dependencies for swagger-springmvc, added explicitely -->
|
1668
|
<dependency>
|
1669
|
<groupId>io.springfox</groupId>
|
1670
|
<artifactId>springfox-swagger2</artifactId>
|
1671
|
<version>2.6.1</version>
|
1672
|
</dependency>
|
1673
|
|
1674
|
<!-- ******* DATABASES DRIVER ******* -->
|
1675
|
<dependency>
|
1676
|
<groupId>mysql</groupId>
|
1677
|
<artifactId>mysql-connector-java</artifactId>
|
1678
|
<version>8.0.29</version>
|
1679
|
</dependency>
|
1680
|
<dependency>
|
1681
|
<groupId>org.mariadb.jdbc</groupId>
|
1682
|
<artifactId>mariadb-java-client</artifactId>
|
1683
|
<version>3.0.6</version>
|
1684
|
</dependency>
|
1685
|
<dependency>
|
1686
|
<groupId>org.postgresql</groupId>
|
1687
|
<artifactId>postgresql</artifactId>
|
1688
|
<version>42.3.6</version>
|
1689
|
</dependency>
|
1690
|
<dependency>
|
1691
|
<groupId>com.h2database</groupId>
|
1692
|
<artifactId>h2</artifactId>
|
1693
|
<version>1.4.190</version>
|
1694
|
</dependency>
|
1695
|
<!-- SQL Server -->
|
1696
|
<dependency>
|
1697
|
<groupId>com.microsoft.sqlserver</groupId>
|
1698
|
<artifactId>mssql-jdbc</artifactId>
|
1699
|
<version>9.4.1.jre8</version>
|
1700
|
</dependency>
|
1701
|
<dependency>
|
1702
|
<!-- SQL Server and Sybase -->
|
1703
|
<groupId>net.sourceforge.jtds</groupId>
|
1704
|
<artifactId>jtds</artifactId>
|
1705
|
<version>1.3.1</version>
|
1706
|
</dependency>
|
1707
|
<dependency>
|
1708
|
<groupId>oracle</groupId>
|
1709
|
<artifactId>ojdbc14</artifactId>
|
1710
|
<version>10.2.0.4.0</version>
|
1711
|
</dependency>
|
1712
|
<!-- <dependency>
|
1713
|
<groupId>ojdbc</groupId>
|
1714
|
<artifactId>ojdbc</artifactId>
|
1715
|
<version>14</version>
|
1716
|
</dependency> -->
|
1717
|
<!-- GIS/KML -->
|
1718
|
<dependency>
|
1719
|
<groupId>de.micromata.jak</groupId>
|
1720
|
<artifactId>JavaAPIforKml</artifactId>
|
1721
|
<version>2.2.1</version>
|
1722
|
</dependency>
|
1723
|
<dependency>
|
1724
|
<groupId>org.geotools</groupId>
|
1725
|
<artifactId>gt-opengis</artifactId>
|
1726
|
<version>${geotools.version}</version>
|
1727
|
</dependency>
|
1728
|
<dependency>
|
1729
|
<groupId>org.geotools</groupId>
|
1730
|
<artifactId>gt-referencing</artifactId>
|
1731
|
<version>${geotools.version}</version>
|
1732
|
</dependency>
|
1733
|
<dependency>
|
1734
|
<groupId>org.geotools</groupId>
|
1735
|
<artifactId>gt-epsg-wkt</artifactId>
|
1736
|
<version>${geotools.version}</version>
|
1737
|
</dependency>
|
1738
|
<dependency>
|
1739
|
<groupId>org.geotools</groupId>
|
1740
|
<artifactId>gt-main</artifactId>
|
1741
|
<version>${geotools.version}</version>
|
1742
|
</dependency>
|
1743
|
|
1744
|
<dependency>
|
1745
|
<groupId>com.sun</groupId>
|
1746
|
<artifactId>tools</artifactId>
|
1747
|
<version>1.8.0</version>
|
1748
|
</dependency>
|
1749
|
<dependency>
|
1750
|
<!-- Email functionality (used in cdmlib-services) -->
|
1751
|
<groupId>com.sun.mail</groupId>
|
1752
|
<artifactId>javax.mail</artifactId>
|
1753
|
<version>${jakarta.mail.version}</version>
|
1754
|
</dependency>
|
1755
|
<dependency>
|
1756
|
<!-- only needed for PasswordResetService, may be replaced by Thymeleaf, but also needed in TaxEditor cdmlib modul -->
|
1757
|
<groupId>org.apache.commons</groupId>
|
1758
|
<artifactId>commons-text</artifactId>
|
1759
|
<version>1.9</version>
|
1760
|
</dependency>
|
1761
|
<dependency>
|
1762
|
<groupId>org.passay</groupId>
|
1763
|
<artifactId>passay</artifactId>
|
1764
|
<version>1.6.1</version>
|
1765
|
</dependency>
|
1766
|
</dependencies>
|
1767
|
</dependencyManagement>
|
1768
|
</project>
|