Project

General

Profile

Download (22.8 KB) Statistics
| Branch: | Tag: | Revision:
1 999d37c4 Cherian Mathew
<?xml version="1.0" encoding="UTF-8"?>
2 9e671498 Cherian Mathew
<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 999d37c4 Cherian Mathew
  <parent>
5
    <groupId>eu.etaxonomy</groupId>
6
    <artifactId>taxeditor-parent</artifactId>
7 f1cda655 jenkins
    <version>5.35.0-SNAPSHOT</version>
8 999d37c4 Cherian Mathew
  </parent>
9
  <modelVersion>4.0.0</modelVersion>
10
  <artifactId>eu.etaxonomy.taxeditor.cdmlib</artifactId>
11
  <packaging>eclipse-plugin</packaging>
12 765bd4c4 Andreas Müller
  <properties>
13 9f485921 Andreas Müller
      <jackson.version>2.13.3</jackson.version>
14 37dc0842 Andreas Müller
      <poi.version>4.1.2</poi.version>
15 0f6841be Andreas Müller
      <hibernate.version>5.4.33.Final</hibernate.version>
16
      <lucene.version>5.5.5</lucene.version>
17 8923a5b4 Andreas Müller
      <spring.version>4.3.30.RELEASE</spring.version>                         <!-- checked 2021-12, further upgrade possible -->
18
      <spring-security.version>4.2.20.RELEASE</spring-security.version>       <!-- checked 2021-12, further upgrade possible -->
19 23f8a87b Andreas Müller
      <aspectj.version>1.9.7</aspectj.version>
20 765bd4c4 Andreas Müller
  </properties>
21 999d37c4 Cherian Mathew
  <name>CDM Library Dependencies Plugin</name>
22 ad69c198 Cherian Mathew
  <description>CDM Library and dependencies as a plugin</description>
23 c7ce2226 Cherian Mathew
  <build>
24
    <pluginManagement>
25
      <plugins>
26
        <plugin>
27
          <groupId>org.apache.maven.plugins</groupId>
28
          <artifactId>maven-surefire-plugin</artifactId>
29 6103abfd Andreas Müller
          <version>3.0.0-M7</version>
30 c7ce2226 Cherian Mathew
        </plugin>
31
      </plugins>
32
    </pluginManagement>
33 999d37c4 Cherian Mathew
    <plugins>
34
      <plugin>
35 c7ce2226 Cherian Mathew
        <groupId>org.apache.maven.plugins</groupId>
36
        <artifactId>maven-dependency-plugin</artifactId>
37 1858ff62 Andreas Müller
        <version>3.2.0</version>
38 c7ce2226 Cherian Mathew
        <executions>
39
          <execution>
40
            <id>copy-dependencies</id>
41
            <phase>validate</phase>
42
            <goals>
43
              <goal>copy-dependencies</goal>
44
            </goals>
45
            <configuration>
46
              <excludeArtifactIds>
47
                cdmlib-remote-webapp
48
              </excludeArtifactIds>
49
              <includeArtifactIds>
50 3a9187cb Andreas Müller
                cdmlib-commons,cdmlib-model,cdmlib-api,cdmlib-persistence,cdmlib-services,cdmlib-cache,cdmlib-ext,cdmlib-io
51 c7ce2226 Cherian Mathew
              </includeArtifactIds>
52
              <outputDirectory>${basedir}/lib</outputDirectory>
53
              <overWriteReleases>true</overWriteReleases>
54
              <overWriteSnapshots>true</overWriteSnapshots>
55
              <excludeTransitive>true</excludeTransitive>
56
            </configuration>
57
          </execution>
58 c1ad99d9 Andreas Kohlbecker
          <execution>
59
            <id>copy-dependency-jars</id>
60
            <phase>validate</phase>
61
            <goals>
62
              <goal>copy-dependencies</goal>
63
            </goals>
64
            <configuration>
65
              <includeArtifactIds>
66 77fcaa65 Andreas Müller
                httpclient,JavaAPIforKml,iiif-apis,commons-lang3,commons-lang,commons-text,
67 beab159a Katja Luther
                commons-codec,commons-io,commons-beanutils,
68 8369bf53 Katja Luther
                json,json-lib,ezmorph,
69 3075786e Andreas Müller
                log4j-core,log4j-api,slf4j-api,jboss-logging,jcl-over-slf4j,log4j-slf4j-impl,
70 cd536e0b Andreas Müller
                lucene-analyzers-common,lucene-core,lucene-queryparser,lucene-suggest,lucene-sandbox,
71 caf6fb19 Andreas Müller
                commons-imaging,jackson-databind,jackson-annotations,jackson-core,
72 384cf0c3 Andreas Müller
                jakarta.validation-api,validation-api,
73 806f96a2 Andreas Müller
                ehcache,
74 17aae9c1 Andreas Müller
                hibernate-validator,
75 42df8aed Andreas Müller
                spring-context,spring-aspects,spring-beans,
76 224f68c5 Andreas Müller
                spring-tx,spring-web,spring-core,spring-aop,
77 091d1413 Andreas Müller
                spring-jdbc,spring-security-core,
78 1c1f1876 Andreas Müller
                aspectjweaver,
79 fde5fee1 Andreas Müller
                byte-buddy,
80 1c1f1876 Andreas Müller
                hibernate-core,hibernate-envers,antlr,
81 0f6841be Andreas Müller
                javax.persistence-api,
82 1c1f1876 Andreas Müller
                xml-apis,lsid-client,jdom,
83 beab159a Katja Luther
                commons-collections4,commons-collections,commons-math3,
84 4228a4ef Andreas Müller
                c3p0,mchange-commons-java,
85 1c1f1876 Andreas Müller
                opencsv,joda-time,
86 9306fdac Andreas Müller
                h2,mysql-connector-java,postgresql,
87 305734b8 Andreas Müller
                junit,hamcrest-core,commons-dbcp,commons-pool,
88 88ff4560 Andreas Müller
                jboss-transaction-api_1.2_spec
89 c1ad99d9 Andreas Kohlbecker
              </includeArtifactIds>
90
              <outputDirectory>
91
                ${basedir}/lib
92
              </outputDirectory>
93
              <overWriteReleases>true</overWriteReleases>
94
              <overWriteSnapshots>true</overWriteSnapshots>
95
              <excludeTransitive>true</excludeTransitive>
96
            </configuration>
97
          </execution>
98
          <execution>
99
            <id>copy-dependency-jars-transitive</id>
100
            <phase>validate</phase>
101
            <goals>
102
              <goal>copy-dependencies</goal>
103
            </goals>
104
            <configuration>
105
              <includeArtifactIds>
106 289bddaa Andreas Müller
                httpclient-cache,httpcore
107 c1ad99d9 Andreas Kohlbecker
              </includeArtifactIds>
108
              <outputDirectory>
109
                ${basedir}/lib
110
              </outputDirectory>
111
              <overWriteReleases>true</overWriteReleases>
112
              <overWriteSnapshots>true</overWriteSnapshots>
113
              <excludeTransitive>false</excludeTransitive>
114
            </configuration>
115
          </execution>
116 999d37c4 Cherian Mathew
        </executions>
117 c7ce2226 Cherian Mathew
      </plugin>
118
      <plugin>
119
        <groupId>org.apache.maven.plugins</groupId>
120
        <artifactId>maven-antrun-plugin</artifactId>
121
        <executions>
122
          <execution>
123
            <id>update-snapshot-jar-names</id>
124
            <phase>validate</phase>
125
            <goals>
126
              <goal>run</goal>
127
            </goals>
128
            <configuration>
129
              <target>
130
                <echo>Update cdmlib jars to SNAPSHOT when build with
131
                  timestamp
132
                </echo>
133
                <move todir="./lib">
134
                  <fileset dir="./lib" />
135
                  <mapper type="regexp"
136 9d170601 Cherian Mathew
                    from="(^cdmlib\-.*\-\d+\.\d+\.\d+\-)[\d.-]+(\.jar)"
137 c7ce2226 Cherian Mathew
                    to="\1SNAPSHOT\2" />
138
                </move>
139
                <move todir="./lib">
140
                  <fileset dir="./lib" />
141
                  <mapper type="regexp"
142 9d170601 Cherian Mathew
                    from="(^cdmlib\-.*\-\d+\.\d+\.\d+\-)[\d.-]+(\-sources\.jar)"
143 9e671498 Cherian Mathew
                    to="\1SNAPSHOT\2" />
144 1cd65199 Cherian Mathew
                </move>
145 c7ce2226 Cherian Mathew
              </target>
146
            </configuration>
147
          </execution>
148 9e671498 Cherian Mathew
          <execution>
149
            <id>remove-existing-jars</id>
150
            <phase>clean</phase>
151
            <goals>
152
              <goal>run</goal>
153
            </goals>
154
            <configuration>
155
              <target>
156
                <echo>Remove all cdmlib jars</echo>
157
                <delete>
158
                  <fileset dir="./lib" includes="cdmlib-*" />
159
                </delete>
160
              </target>
161
            </configuration>
162
          </execution>
163 c7ce2226 Cherian Mathew
        </executions>
164
      </plugin>
165
    </plugins>
166
  </build>
167
  <profiles>
168
    <profile>
169
      <id>copyAllJars</id>
170
      <build>
171
        <plugins>
172
          <plugin>
173
            <groupId>org.apache.maven.plugins</groupId>
174
            <artifactId>maven-dependency-plugin</artifactId>
175 1858ff62 Andreas Müller
            <version>3.2.0</version>
176 c7ce2226 Cherian Mathew
            <executions>
177
              <execution>
178
                <id>copy-all-dependencies</id>
179
                <phase>validate</phase>
180
                <goals>
181
                  <goal>copy-dependencies</goal>
182
                </goals>
183
                <configuration>
184
                  <excludeArtifactIds>
185
                    cdmlib-remote-webapp
186
                  </excludeArtifactIds>
187
                  <outputDirectory>${basedir}/lib</outputDirectory>
188
                  <overWriteReleases>true</overWriteReleases>
189
                  <overWriteSnapshots>true</overWriteSnapshots>
190
                  <excludeTransitive>true</excludeTransitive>
191
                </configuration>
192
              </execution>
193
            </executions>
194
          </plugin>
195
        </plugins>
196
      </build>
197
    </profile>
198
  </profiles>
199
  <dependencies>
200 0f6841be Andreas Müller
  
201
    <!-- direct dependencies (used within this module) -->
202
    
203
    <!--   used e.g. in CdmApplicationRemoteConfiguration -->
204 d5948f17 Cherian Mathew
    <dependency>
205 0f6841be Andreas Müller
      <!-- used e.g. by CdmServiceCacher -->
206 d5948f17 Cherian Mathew
      <groupId>eu.etaxonomy</groupId>
207 0f6841be Andreas Müller
      <artifactId>cdmlib-cache</artifactId>
208 3a9187cb Andreas Müller
      <version>${cdmlib.version}</version>
209 d5948f17 Cherian Mathew
    </dependency>
210
    <dependency>
211 0f6841be Andreas Müller
      <!-- used e.g. by CdmApplicationState -->
212 d5948f17 Cherian Mathew
      <groupId>eu.etaxonomy</groupId>
213 0f6841be Andreas Müller
      <artifactId>cdmlib-commons</artifactId>
214 d5948f17 Cherian Mathew
      <version>${cdmlib.version}</version>
215
    </dependency>
216
    <dependency>
217 0f6841be Andreas Müller
      <!-- used e.g. by CdmChangeEvent -->
218 d5948f17 Cherian Mathew
      <groupId>eu.etaxonomy</groupId>
219 0f6841be Andreas Müller
      <artifactId>cdmlib-model</artifactId>
220 d5948f17 Cherian Mathew
      <version>${cdmlib.version}</version>
221
    </dependency>
222
    <dependency>
223
      <groupId>eu.etaxonomy</groupId>
224
      <artifactId>cdmlib-io</artifactId>
225
      <version>${cdmlib.version}</version>
226
    </dependency>
227
    <dependency>
228
      <groupId>eu.etaxonomy</groupId>
229
      <artifactId>cdmlib-ext</artifactId>
230
      <version>${cdmlib.version}</version>
231
    </dependency>
232 f4cc04f2 Katja Luther
    <dependency>
233
      <groupId>eu.etaxonomy</groupId>
234 0f6841be Andreas Müller
      <artifactId>cdmlib-persistence</artifactId>
235 f4cc04f2 Katja Luther
      <version>${cdmlib.version}</version>
236
    </dependency>
237 806f96a2 Andreas Müller
    <dependency>
238 0f6841be Andreas Müller
      <groupId>eu.etaxonomy</groupId>
239
      <artifactId>cdmlib-services</artifactId>
240
      <version>${cdmlib.version}</version>
241 c7ce2226 Cherian Mathew
    </dependency>
242
    <dependency>
243
      <groupId>org.springframework</groupId>
244 0f6841be Andreas Müller
      <!-- used e.g. by CachingHttpInvokerProxyFactoryBean -->
245
      <artifactId>spring-aop</artifactId>
246 c6e48a0a Andreas Müller
      <version>${spring.version}</version>
247 c7ce2226 Cherian Mathew
    </dependency>
248
    <dependency>
249
      <groupId>org.springframework</groupId>
250 0f6841be Andreas Müller
      <artifactId>spring-beans</artifactId>
251 c6e48a0a Andreas Müller
      <version>${spring.version}</version>
252 c7ce2226 Cherian Mathew
    </dependency>
253
    <dependency>
254
      <groupId>org.springframework</groupId>
255 0f6841be Andreas Müller
      <artifactId>spring-context</artifactId>
256 c6e48a0a Andreas Müller
      <version>${spring.version}</version>
257 c7ce2226 Cherian Mathew
    </dependency>
258
    <dependency>
259
      <groupId>org.springframework</groupId>
260 0f6841be Andreas Müller
      <artifactId>spring-core</artifactId>
261 c6e48a0a Andreas Müller
      <version>${spring.version}</version>
262 c7ce2226 Cherian Mathew
    </dependency>
263
    <dependency>
264
      <groupId>org.springframework</groupId>
265 a3e7482e Katja Luther
      <artifactId>spring-tx</artifactId>
266 c6e48a0a Andreas Müller
      <version>${spring.version}</version>
267 c7ce2226 Cherian Mathew
    </dependency>
268
    <dependency>
269
      <groupId>org.springframework</groupId>
270 0f6841be Andreas Müller
      <artifactId>spring-web</artifactId>
271 c6e48a0a Andreas Müller
      <version>${spring.version}</version>
272 c7ce2226 Cherian Mathew
    </dependency>
273
    <dependency>
274
      <groupId>org.springframework.security</groupId>
275
      <artifactId>spring-security-core</artifactId>
276 c6e48a0a Andreas Müller
      <version>${spring-security.version}</version>
277 c7ce2226 Cherian Mathew
    </dependency>
278
    <dependency>
279 0f6841be Andreas Müller
      <!-- used e.g. by CdmLazyLoader -->
280
      <groupId>org.hibernate</groupId>
281
      <artifactId>hibernate-core</artifactId>
282
      <version>${hibernate.version}</version>
283 c1ad99d9 Andreas Kohlbecker
    </dependency>
284 3185cbdd Andreas Müller
    <dependency>
285
        <groupId>org.apache.commons</groupId>
286
        <artifactId>commons-lang3</artifactId>
287 92605e20 Andreas Müller
        <version>3.12.0</version>
288 3185cbdd Andreas Müller
    </dependency>
289 3d5bd11a Andreas Müller
    <dependency>
290 0f6841be Andreas Müller
      <!-- used e.g. by CdmServerUtils -->
291
      <groupId>commons-io</groupId>
292
      <artifactId>commons-io</artifactId>
293
      <version>2.11.0</version>
294 765bd4c4 Andreas Müller
    </dependency>
295
    <dependency>
296 0f6841be Andreas Müller
      <!-- used e.g. by CdmServerUtils -->
297
      <groupId>org.apache.commons</groupId>
298
      <artifactId>commons-text</artifactId>
299 d18929a8 Andreas Müller
      <version>1.10.0</version>
300 765bd4c4 Andreas Müller
    </dependency>
301 0f6841be Andreas Müller
      <dependency>
302
      <!-- used in AuthenticatingHttpInvokerRequestExecutor -->
303
      <groupId>commons-codec</groupId>
304
      <artifactId>commons-codec</artifactId>
305
      <version>1.15</version>
306 765bd4c4 Andreas Müller
    </dependency>
307 47f89b8f Andreas Müller
    <dependency>
308
      <!-- CdmServiceCacher -->
309
      <groupId>org.apache.logging.log4j</groupId>
310
      <artifactId>log4j-core</artifactId>
311 42fa0ffe Andreas Müller
      <version>${log4j.version}</version>
312 47f89b8f Andreas Müller
    </dependency>
313
    <dependency>
314
      <!-- CdmServiceCacher -->
315
      <groupId>org.apache.logging.log4j</groupId>
316
      <artifactId>log4j-api</artifactId>
317 42fa0ffe Andreas Müller
      <version>${log4j.version}</version>
318 47f89b8f Andreas Müller
    </dependency>
319 075cdc06 Andreas Müller
    <dependency>
320
       <groupId>org.aspectj</groupId>
321 0f6841be Andreas Müller
       <!-- used e.g. by CdmLazyLoader -->
322 075cdc06 Andreas Müller
       <artifactId>aspectjweaver</artifactId>
323 23f8a87b Andreas Müller
       <version>${aspectj.version}</version>
324 075cdc06 Andreas Müller
    </dependency>
325
    <dependency>
326 0f6841be Andreas Müller
      <groupId>org.apache.httpcomponents</groupId>
327
      <artifactId>httpclient</artifactId>
328
      <!-- version defined in parent pom -->
329 3dfc2334 Andreas Müller
    </dependency>
330
    <dependency>
331 0f6841be Andreas Müller
      <!-- used e.g. by CdmServerInfo -->
332
      <groupId>org.apache.httpcomponents</groupId>
333
      <artifactId>httpcore</artifactId>
334
      <version>4.4.15</version>
335 3dfc2334 Andreas Müller
    </dependency>
336 37dc0842 Andreas Müller
    <dependency>
337 0f6841be Andreas Müller
      <!-- used e.g. by CdmServerInfo -->
338
      <groupId>org.json</groupId>
339
      <artifactId>json</artifactId>
340
      <version>20220320</version>
341 611f5f1f Andreas Müller
    </dependency>
342
    <dependency>
343
      <!-- used for GBIF specimen import -->
344
      <groupId>net.sf.json-lib</groupId>
345
      <artifactId>json-lib</artifactId>
346
      <version>2.4</version>
347
      <!-- classifier required as json-lib exists on maven central as json-lib-2.4-jdk15.jar and xxx-jdk13.jar, see #9887 -->
348
      <classifier>jdk15</classifier>
349 37dc0842 Andreas Müller
    </dependency>
350 df6f5a8b Katja Luther
    <dependency>
351 beab159a Katja Luther
	 <!-- used for GBIF specimen import -->
352 df6f5a8b Katja Luther
	  <groupId>net.sf.ezmorph</groupId>
353
	  <artifactId>ezmorph</artifactId>
354
	  <version>1.0.6</version>
355
	</dependency>
356 37dc0842 Andreas Müller
    <dependency>
357 0f6841be Andreas Müller
      <!-- used e.g. by CdmServerInfo -->
358
      <groupId>com.fasterxml.jackson.core</groupId>
359
      <artifactId>jackson-core</artifactId>
360
      <version>${jackson.version}</version>
361 37dc0842 Andreas Müller
    </dependency>
362
    <dependency>
363 0f6841be Andreas Müller
      <!-- used e.g. by CdmServerInfo -->
364
      <groupId>com.fasterxml.jackson.core</groupId>
365
      <artifactId>jackson-databind</artifactId>
366
      <version>${jackson.version}</version>
367 37dc0842 Andreas Müller
    </dependency>
368
    <dependency>
369 0f6841be Andreas Müller
      <!-- used e.g. by ICdmEntitySession -->
370
      <groupId>net.sf.ehcache</groupId>
371
      <artifactId>ehcache</artifactId>
372 bfb84c1f Andreas Müller
      <version>2.10.6</version>
373 37dc0842 Andreas Müller
    </dependency>
374
    <dependency>
375 0f6841be Andreas Müller
      <!-- used e.g. by CdmPersistentRemoteSource -->
376
      <groupId>org.jdom</groupId>
377
      <artifactId>jdom</artifactId>
378
      <version>1.1.3</version>
379 38727a28 Andreas Müller
    </dependency>
380 0f6841be Andreas Müller
    
381
    <!-- indirectly used with compile error -->
382 38727a28 Andreas Müller
    <dependency>
383 0f6841be Andreas Müller
      <!-- indirectly used e.g. by AbstractPersistentCollection -->
384
      <groupId>javax.persistence</groupId>
385
      <artifactId>javax.persistence-api</artifactId>
386
      <version>2.2</version>
387 38727a28 Andreas Müller
    </dependency>
388
    <dependency>
389 0f6841be Andreas Müller
      <!-- indirectly used e.g. by AbstractPersistentCollection -->
390
      <groupId>org.jboss.logging</groupId>
391
      <artifactId>jboss-logging</artifactId>
392
      <version>3.4.3.Final</version>
393 38727a28 Andreas Müller
    </dependency>
394 0f6841be Andreas Müller
    
395
    <!-- indirectly used, by other taxeditor modules -->
396
    <!--   ... by taxeditor.local -->
397 38727a28 Andreas Müller
    <dependency>
398 0f6841be Andreas Müller
      <groupId>eu.etaxonomy</groupId>
399
      <artifactId>cdmlib-api</artifactId>
400
      <version>${cdmlib.version}</version>
401 38727a28 Andreas Müller
    </dependency>
402 0f6841be Andreas Müller
    
403
    <!--   ... by taxeditor.store -->
404 38727a28 Andreas Müller
    <dependency>
405 0f6841be Andreas Müller
      <groupId>joda-time</groupId>
406
      <artifactId>joda-time</artifactId>
407
      <version>2.10.14</version>
408 38727a28 Andreas Müller
    </dependency>
409
    <dependency>
410 0f6841be Andreas Müller
      <groupId>net.sf.opencsv</groupId>
411
      <artifactId>opencsv</artifactId>
412
      <version>2.3</version>
413 38727a28 Andreas Müller
    </dependency>
414
    <dependency>
415 0f6841be Andreas Müller
      <groupId>org.springframework</groupId>
416
      <artifactId>spring-aspects</artifactId>
417
      <version>${spring.version}</version>
418 38727a28 Andreas Müller
    </dependency>
419
    <dependency>
420 0f6841be Andreas Müller
      <groupId>com.ibm.lsid</groupId>
421
      <artifactId>lsid-client</artifactId>
422
      <version>1.1.2</version>
423 38727a28 Andreas Müller
    </dependency>
424 aed150fb Andreas Müller
    <dependency>
425
      <groupId>org.apache.commons</groupId>
426
      <artifactId>commons-imaging</artifactId>
427
      <version>1.0-alpha3</version>
428
    </dependency>
429 0f6841be Andreas Müller
    
430 fe77d8d4 Andreas Müller
    <!-- used by taxeditor.editor -> character matrix -->
431
    <dependency>
432
      <groupId>org.apache.commons</groupId>
433
      <artifactId>commons-math3</artifactId>
434
      <version>3.6.1</version>
435
    </dependency>
436
    
437 df1cedb8 Andreas Müller
    <!-- used by bulkeditor -->
438
    <dependency>
439 583a9ebb Andreas Müller
      <!-- used by CharacterMatrix/bulkeditor (LinkedList) and UpdateResult.exceptions (CircularFifoQueue)  -->
440 df1cedb8 Andreas Müller
      <groupId>org.apache.commons</groupId>
441
      <artifactId>commons-collections4</artifactId>
442
      <version>4.4</version>
443
    </dependency>
444 beab159a Katja Luther
    <dependency>
445
      <!-- used by gbif import  -->
446
      <groupId>commons-collections</groupId>
447
      <artifactId>commons-collections</artifactId>
448
      <version>3.2.2</version>
449
	</dependency>
450
	
451
	<dependency>
452
      <!-- used by gbif import  -->
453
      <groupId>commons-beanutils</groupId>
454
      <artifactId>commons-beanutils</artifactId>
455
      <version>1.9.4</version>
456
	</dependency>
457 df1cedb8 Andreas Müller
    
458 8102eff6 Andreas Müller
    <!-- used by taxeditor.local -->
459
    <dependency>
460
      <!-- used by datasource dialogue finish button  -->
461
      <groupId>com.mchange</groupId>
462
      <artifactId>mchange-commons-java</artifactId>
463
      <version>0.2.11</version>
464
    </dependency>
465
    
466 5cef85cb Andreas Müller
    <!-- needed by taxeditor.test during test run, maybe move to test package only -->
467 7c4f7d92 Andreas Müller
    <dependency>
468 fae1500b Andreas Müller
      <!-- used by hibernate -->
469 7c4f7d92 Andreas Müller
      <groupId>net.bytebuddy</groupId>
470
      <artifactId>byte-buddy</artifactId>
471
      <version>1.12.10</version>
472
    </dependency>
473 5cef85cb Andreas Müller
    <dependency>
474
      <!-- dependency of xerces -->
475
      <groupId>xml-apis</groupId>
476
      <artifactId>xml-apis</artifactId>
477
      <version>1.4.01</version>
478
    </dependency>
479
    <!-- needed only for H2Local and unitils, move maybe to test + local together with c3p0 -->
480
    <dependency>
481
      <groupId>commons-pool</groupId>
482
      <artifactId>commons-pool</artifactId>
483
      <version>1.6</version>
484
    </dependency>
485 7c4f7d92 Andreas Müller
    
486 0f6841be Andreas Müller
    <!-- For Unit Tests Start -->
487
    <!-- keep junit and its dependency hamcrest here as long as each plugin
488
         has its own unit tests and junit is not yet added there in a way
489
         that it does not appear in production bundles -->
490 38727a28 Andreas Müller
    <dependency>
491 0f6841be Andreas Müller
        <groupId>junit</groupId>
492
        <artifactId>junit</artifactId>
493
        <version>4.13.2</version>
494
        <scope>test</scope>
495 38727a28 Andreas Müller
    </dependency>
496
    <dependency>
497 0f6841be Andreas Müller
        <groupId>org.hamcrest</groupId>
498
        <artifactId>hamcrest-core</artifactId>
499
        <version>1.3</version>
500
    <!--     <scope>test</scope> -->
501 38727a28 Andreas Müller
    </dependency>
502 0f6841be Andreas Müller
     
503 1c648453 Andreas Müller
    <!-- END for Unit Tests -->
504 0f6841be Andreas Müller
    
505 cd817281 Andreas Müller
    <!-- required during RUNTIME -->
506 909ec7f3 Andreas Müller
    
507 1c648453 Andreas Müller
    <dependency>
508
      <!-- throws exception in bulk editor after search if not present -->
509
      <groupId>org.hibernate</groupId>
510
      <artifactId>hibernate-envers</artifactId>
511
      <version>${hibernate.version}</version>
512
    </dependency>
513 d8a4b95f Andreas Müller
    <dependency>
514
      <!-- throws exception in bulk editor after search during deserialization if not present -->
515
      <groupId>org.apache.lucene</groupId>
516
      <artifactId>lucene-core</artifactId>
517
      <version>${lucene.version}</version>
518
    </dependency>
519 9628a4a5 Andreas Müller
    <dependency>
520
      <!-- e.g. when opening character matrix
521
           probably only used by hibernate-core, so remove when removing hibernate-core -->
522
      <groupId>antlr</groupId>
523
      <artifactId>antlr</artifactId>
524
      <version>2.7.7</version>
525
    </dependency>
526 909ec7f3 Andreas Müller
    <dependency>
527
      <!-- used e.g. by login dialog, CdmServerInfo:411 -->  
528
      <groupId>com.fasterxml.jackson.core</groupId>
529
      <artifactId>jackson-annotations</artifactId>
530
      <version>${jackson.version}</version>
531
    </dependency>
532
    <dependency>
533
        <!-- for any transactions, e.g. when first time logging in -->
534
        <groupId>org.jboss.spec.javax.transaction</groupId>
535
        <artifactId>jboss-transaction-api_1.2_spec</artifactId>
536
        <version>1.1.1.Final</version>
537
    </dependency>
538
    
539 27a68076 Andreas Müller
    <dependency>
540
        <!-- for showing maps in distribution details view -->
541 649e1510 Andreas Müller
        <groupId>de.micromata.jak</groupId>
542
        <!-- Java11 required <groupId>uk.m0nom</groupId>  -->
543 27a68076 Andreas Müller
        <artifactId>JavaAPIforKml</artifactId>
544 649e1510 Andreas Müller
        <version>2.2.1</version>
545 27a68076 Andreas Müller
    </dependency>
546
    
547 384cf0c3 Andreas Müller
    <dependency>
548
      <!-- used if a validation result is returned, see https://dev.e-taxonomy.eu/redmine/issues/10182#note-10  -->
549
      <!-- can probably be removed after switching to jakarta.validation-api with spring 6.x -->
550
      <groupId>javax.validation</groupId>
551
      <artifactId>validation-api</artifactId>
552
      <version>2.0.1.Final</version>
553
    </dependency>
554
    
555 cd817281 Andreas Müller
    <dependency>
556
      <!-- used in datasource view and in test, maybe enough if in taxeditor.local and taxeditor.test -->
557
      <groupId>com.mchange</groupId>
558
      <artifactId>c3p0</artifactId>
559 e0a68352 Andreas Müller
      <version>0.9.5.2</version>
560 cd817281 Andreas Müller
    </dependency>
561
    
562
    <!-- database related, should be moved to local/test when possible -->
563
    <!-- only for supporting test button in datasource dialogue, dialogue should be moved to taxeditor.webapp -->
564
    <dependency>
565
      <groupId>mysql</groupId>
566
      <artifactId>mysql-connector-java</artifactId>
567
      <version>8.0.29</version>
568
    </dependency>
569
    <dependency>
570
        <groupId>com.h2database</groupId>
571
        <artifactId>h2</artifactId>
572
        <version>1.4.190</version>
573
    </dependency>
574
    <dependency>
575
        <groupId>org.postgresql</groupId>
576
        <artifactId>postgresql</artifactId>
577
        <version>42.3.6</version>
578
    </dependency>
579 909ec7f3 Andreas Müller
    
580 0f6841be Andreas Müller
    <!-- Only added for correct package export, but reported as needed -->
581
    
582
    <!-- dbcp and pool needed for H2Local and unitils, 
583
     move to taxeditor.webapp and taxedtior.test once all db dependencies are moved to webapp-->   
584 38727a28 Andreas Müller
    <dependency>
585 0f6841be Andreas Müller
      <groupId>commons-dbcp</groupId>
586
      <artifactId>commons-dbcp</artifactId>
587
      <version>1.4</version>
588 38727a28 Andreas Müller
    </dependency>
589 0f6841be Andreas Müller
    
590
    <!-- For Hibernate Mapping Start -->
591 38727a28 Andreas Müller
    <dependency>
592 0f6841be Andreas Müller
      <groupId>jakarta.validation</groupId>
593
      <artifactId>jakarta.validation-api</artifactId>
594
      <version>3.0.2</version>
595 38727a28 Andreas Müller
    </dependency>
596 0f6841be Andreas Müller
    
597
    <!-- needed at least in taxeditor.test by BundleLoader; try to move there but test carefully -->
598 38727a28 Andreas Müller
    <dependency>
599 0f6841be Andreas Müller
      <groupId>commons-lang</groupId>
600
      <artifactId>commons-lang</artifactId>
601
      <version>2.6</version>
602 9c42e66c Andreas Müller
    </dependency>
603 16fa9188 Andreas Müller
    <dependency>
604
      <!-- required when running test -->
605
      <groupId>org.springframework</groupId>
606
      <artifactId>spring-jdbc</artifactId>
607
      <version>${spring.version}</version>
608
    </dependency>
609 38727a28 Andreas Müller
    
610 0f6841be Andreas Müller
    <!-- logging -->
611 ddecba6a Andreas Müller
    <dependency> 
612 0f6841be Andreas Müller
        <groupId>org.slf4j</groupId>
613
        <artifactId>slf4j-api</artifactId>
614
        <version>1.7.36</version>
615
    </dependency>
616 47f89b8f Andreas Müller
    <dependency>
617 662e077a Andreas Müller
      <groupId>org.apache.logging.log4j</groupId>
618
      <artifactId>log4j-slf4j-impl</artifactId>
619 42fa0ffe Andreas Müller
      <version>${log4j.version}</version>
620 15daf02c Andreas Müller
    </dependency>
621 3075786e Andreas Müller
    <dependency>
622
      <groupId>org.slf4j</groupId>
623
      <artifactId>jcl-over-slf4j</artifactId>
624
      <version>1.7.36</version>
625
    </dependency>
626 091d1413 Andreas Müller
627 16fa9188 Andreas Müller
    <dependency>
628
      <!-- https://stackoverflow.com/questions/38727655/maven-dependency-plugin-nosuchelementexception-for-aether-repositorysystem -->
629
      <groupId>org.apache.maven.resolver</groupId>
630
      <artifactId>maven-resolver-api</artifactId>
631
      <version>1.4.1</version>
632
    </dependency>
633
     
634 999d37c4 Cherian Mathew
  </dependencies>
635
</project>
636 c84fdad1 Andreas Kohlbecker