Project

General

Profile

Download (23.9 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>cdm-vaadin</artifactId>
6
  <packaging>war</packaging>
7
  <version>5.17.0</version>
8
  <name>Vaadin Web Application</name>
9
  <properties>
10
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11
    <vaadin.version>7.7.13</vaadin.version>
12
    <vaadin-spring.version>1.2.0</vaadin-spring.version>
13
    <vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version>
14
    <vaadin-spring-addon-eventbus.version>2.0.0.RELEASE</vaadin-spring-addon-eventbus.version>
15
    <cdmlib.version>5.17.0</cdmlib.version>
16
    <unitils.version>3.4.2</unitils.version>
17
    <spring-boot.version>1.3.1.RELEASE</spring-boot.version>
18
    <!-- has spring 4.2.4-RELEASE as dependency --> 
19
    <!-- 
20
        lucene.version must match the version as defined in cdmlib
21
    -->
22
    <lucene.version>5.4.1</lucene.version>
23
    <maven.compiler.source>1.8</maven.compiler.source>
24
    <maven.compiler.target>1.8</maven.compiler.target>
25
  </properties>
26
  <prerequisites>
27
    <maven>3.2.3</maven>
28
  </prerequisites>
29
  <repositories>
30
    <!-- the cdm internal repository -->
31
    <repository>
32
      <id>EditRepository</id>
33
      <url>http://cybertaxonomy.eu/mavenrepo/</url>
34
    </repository>
35
    <!-- current spring source repositories -->
36
    <repository>
37
      <id>SpringSource Enterprise Bundle Repository - External Bundle Milestones</id>
38
      <url>http://repository.springsource.com/maven/bundles/milestone</url>
39
    </repository>
40
    <repository>
41
      <id>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</id>
42
      <url>http://repository.springsource.com/maven/bundles/release</url>
43
    </repository>
44
    <repository>
45
      <id>SpringSource Enterprise Bundle Repository - External Bundle Releases</id>
46
      <url>http://repository.springsource.com/maven/bundles/external</url>
47
    </repository>
48
    <repository>
49
      <id>vaadin-addons</id>
50
      <url>http://maven.vaadin.com/vaadin-addons</url>
51
    </repository>
52
    <repository>
53
      <id>vaadin-snapshots</id>
54
      <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
55
      <releases>
56
        <enabled>false</enabled>
57
      </releases>
58
      <snapshots>
59
        <enabled>true</enabled>
60
      </snapshots>
61
    </repository>
62
  </repositories>
63
  <pluginRepositories>
64
    <pluginRepository>
65
      <id>vaadin-snapshots</id>
66
      <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
67
      <releases>
68
        <enabled>false</enabled>
69
      </releases>
70
      <snapshots>
71
        <enabled>true</enabled>
72
      </snapshots>
73
    </pluginRepository>
74
  </pluginRepositories>
75
  <dependencyManagement>
76
    <dependencies>
77
      <dependency>
78
        <groupId>eu.etaxonomy</groupId>
79
        <artifactId>cdmlib-parent</artifactId>
80
        <version>${cdmlib.version}</version>
81
        <type>pom</type>
82
        <scope>import</scope>
83
      </dependency>
84
      <dependency>
85
        <groupId>org.springframework.boot</groupId>
86
        <artifactId>spring-boot-starter-parent</artifactId>
87
        <version>${spring-boot.version}</version>
88
        <type>pom</type>
89
        <scope>import</scope>
90
      </dependency>
91
      <dependency>
92
        <groupId>com.vaadin</groupId>
93
        <artifactId>vaadin-bom</artifactId>
94
        <version>${vaadin.version}</version>
95
        <type>pom</type>
96
        <scope>import</scope>
97
      </dependency>
98
      <dependency>
99
        <!-- Try updating in cdmlib to 20090211 -->
100
        <groupId>org.json</groupId>
101
        <artifactId>json</artifactId>
102
        <version>20151123</version>
103
      </dependency>
104
    
105
    
106
    
107
    
108
    
109
    
110
      <!-- 
111
      <dependency>
112
        < ! - - FIXME move to cdmlib-test - - >
113
        <groupId>org.springframework</groupId>
114
        <artifactId>spring-mock</artifactId>
115
        <version>4.2.3.RELEASE</version>
116
      </dependency>
117
      <dependency>
118
        <groupId>org.seleniumhq.selenium</groupId>
119
        <artifactId>selenium-api</artifactId>
120
        <version>3.5.3</version>
121
      </dependency>
122
      <dependency>
123
        <groupId>org.seleniumhq.selenium</groupId>
124
        <artifactId>selenium-support</artifactId>
125
        <version>3.5.3</version>
126
      </dependency>
127
      -->
128
    </dependencies>
129
  </dependencyManagement>
130
  <distributionManagement>
131
    <repository>
132
      <uniqueVersion>false</uniqueVersion>
133
      <id>cybertaxonomy.eu</id>
134
      <name>Edit Maven Repository</name>
135
      <url>scpexe://cybertaxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo/</url>
136
      <layout>default</layout>
137
    </repository>
138
  </distributionManagement>
139
  <profiles>
140
    <profile>
141
      <id>align-cdmlib-version</id>
142
      <activation>
143
        <property>
144
          <name>align-cdmlib-version</name>
145
        </property>
146
      </activation>
147
      <build>
148
        <plugins>
149
          <plugin>
150
            <groupId>com.google.code.maven-replacer-plugin</groupId>
151
            <artifactId>replacer</artifactId>
152
            <version>1.5.3</version>
153
            <executions>
154
              <execution>
155
                <phase>process-sources</phase>
156
                <goals>
157
                  <goal>replace</goal>
158
                </goals>
159
              </execution>
160
            </executions>
161
            <configuration>
162
              <file>pom.xml</file>
163
              <!-- \u003C = < , \u003E = > -->
164
              <token>(\u003Ccdmlib\.version\u003E)[^\u003C]*</token>
165
              <value>$1${project.version}</value>
166
            </configuration>
167
          </plugin>
168
        </plugins>
169
      </build>
170
    </profile>
171
    <profile>
172
      <id>java8-doclint-disabled</id>
173
      <activation>
174
        <jdk>[1.8,)</jdk>
175
      </activation>
176
      <properties>
177
        <javadoc.opts>-Xdoclint:none</javadoc.opts>
178
      </properties>
179
    </profile>
180
  </profiles>
181
  <build>
182
    <resources>
183
      <resource>
184
        <!-- all main resources without filtering -->
185
        <directory>src/main/resources</directory>
186
      </resource>
187
      <resource>
188
        <!-- replace the place holders like ${...} in datasources.xml -->
189
        <filtering>true</filtering>
190
        <directory>src/test/resources</directory>
191
        <targetPath>../test-classes</targetPath>
192
        <includes>
193
          <include>datasources.xml</include>
194
        </includes>
195
      </resource>
196
      <resource>
197
        <!-- all other test resources without filtering -->
198
        <directory>src/test/resources</directory>
199
        <targetPath>../test-classes</targetPath>
200
        <excludes>
201
          <exclude>datasources.xml</exclude>
202
        </excludes>
203
      </resource>
204
    </resources>
205
    <plugins>
206
      <plugin>
207
        <groupId>org.apache.maven.plugins</groupId>
208
        <artifactId>maven-resources-plugin</artifactId>
209
        <version>3.0.1</version>
210
      </plugin>
211
      <plugin>
212
        <groupId>org.apache.maven.plugins</groupId>
213
        <artifactId>maven-compiler-plugin</artifactId>
214
        <version>3.3</version>
215
        <configuration>
216
          <source>${maven.compiler.source}</source>
217
          <target>${maven.compiler.target}</target>
218
          <encoding>UTF-8</encoding>
219
        </configuration>
220
      </plugin>
221
      <plugin>
222
        <groupId>org.apache.maven.plugins</groupId>
223
        <artifactId>maven-surefire-plugin</artifactId>
224
        <version>2.19.1</version>
225
        <configuration>
226
          <argLine>-Xms256m -Xmx512m</argLine>
227
        </configuration>
228
      </plugin>
229
      <!-- As we are doing "inplace" GWT compilation, ensure the widgetset -->
230
      <!-- directory is cleaned properly -->
231
      <plugin>
232
        <artifactId>maven-clean-plugin</artifactId>
233
        <version>2.4.1</version>
234
        <configuration>
235
          <filesets>
236
            <fileset>
237
              <directory>src/main/webapp/VAADIN/widgetsets</directory>
238
            </fileset>
239
          </filesets>
240
        </configuration>
241
      </plugin>
242
      <plugin>
243
        <groupId>org.apache.maven.plugins</groupId>
244
        <artifactId>maven-javadoc-plugin</artifactId>
245
        <version>2.9.1</version>
246
        <configuration>
247
          <additionalparam>${javadoc.opts}</additionalparam>
248
        </configuration>
249
      </plugin>
250
      <plugin>
251
        <groupId>org.apache.maven.plugins</groupId>
252
        <artifactId>maven-war-plugin</artifactId>
253
        <version>2.2</version>
254
        <configuration>
255
          <failOnMissingWebXml>false</failOnMissingWebXml>
256
          <warSourceExcludes>WEB-INF/*,WEB-INF/datasources/*</warSourceExcludes>
257
        </configuration>
258
      </plugin>
259
      <plugin>
260
        <groupId>com.vaadin</groupId>
261
        <artifactId>vaadin-maven-plugin</artifactId>
262
        <version>${vaadin.plugin.version}</version>
263
        <configuration>
264
          <extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
265
          <!-- We are doing "inplace" but into subdir VAADIN/widgetsets. 
266
            This way compatible with Vaadin eclipse plugin. -->
267
          <webappDirectory>${basedir}/src/main/webapp/VAADIN/widgetsets</webappDirectory>
268
          <hostedWebapp>${basedir}/src/main/webapp/VAADIN/widgetsets</hostedWebapp>
269
          <!-- Most Vaadin apps don't need this stuff, guide that to target -->
270
          <persistentunitcachedir>${project.build.directory}</persistentunitcachedir>
271
          <deploy>${project.build.directory}/gwt-deploy</deploy>
272
          <!-- Compile report is not typically needed either, saves hunreds 
273
            of mb disk -->
274
          <compileReport>false</compileReport>
275
          <noServer>true</noServer>
276
          <!-- Remove draftCompile when project is ready -->
277
          <draftCompile>false</draftCompile>
278
          <style>OBF</style>
279
          <runTarget>http://localhost:8080/</runTarget>
280
        </configuration>
281
        <executions>
282
          <execution>
283
            <configuration>
284
              <!-- if you don't specify any modules, the plugin will find 
285
                them -->
286
              <!-- <modules> <module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module> 
287
                </modules> -->
288
            </configuration>
289
            <goals>
290
              <goal>clean</goal>
291
              <goal>resources</goal>
292
              <goal>update-theme</goal>
293
              <goal>update-widgetset</goal>
294
              <goal>compile-theme</goal>
295
              <goal>compile</goal>
296
            </goals>
297
          </execution>
298
        </executions>
299
      </plugin>
300
      <plugin>
301
        <groupId>org.eclipse.jetty</groupId>
302
        <artifactId>jetty-maven-plugin</artifactId>
303
        <version>9.4.15.v20190215</version>
304
        <!--  
305
            NOTE:
306
            9.4.0.RC1 requires jdk 1.8, formerly we've been using version 9.1.3.v20140225 which was 
307
            the last version compatible to java 7, but this was causing other problems related to asm
308
            which could not be easily solved.
309
        -->
310
        <configuration>
311
          <useTestScope>true</useTestScope>
312
          <scanIntervalSeconds>2</scanIntervalSeconds>
313
          <systemProperties>
314
            <force>true</force>
315
            <systemProperty>
316
              <name>cdm.datasource</name>
317
              <value>h2_cdmTest</value>
318
            </systemProperty>
319
            <systemProperty>
320
              <name>hibernate.hbm2ddl.auto</name>
321
              <value>create-drop</value>
322
            </systemProperty>
323
            <systemProperty>
324
              <!-- 
325
                The lucene index should be placed into the target folder, 
326
                so user.home needs to be set to this folder. user.home needs to be overridden 
327
                since it already exists, thus the force option is turned on above 
328
              -->
329
              <name>user.home</name>
330
              <value>${basedir}/target/</value>
331
            </systemProperty>
332
            <systemProperty>
333
              <!-- 
334
                datasources.xml is prepared by <plugins><resources>..</resources> above 
335
               -->
336
              <name>cdm.beanDefinitionFile</name>
337
              <value>${project.build.directory}/test-classes/datasources.xml</value>
338
            </systemProperty>
339
          </systemProperties>
340
        </configuration>
341
        <dependencies>
342
          <dependency>
343
            <groupId>org.slf4j</groupId>
344
            <artifactId>slf4j-log4j12</artifactId>
345
            <version>1.6.4</version>
346
          </dependency>
347
        </dependencies>
348
      </plugin>
349
      <plugin>
350
        <groupId>org.apache.maven.plugins</groupId>
351
        <artifactId>maven-failsafe-plugin</artifactId>
352
        <version>2.17</version>
353
        <configuration>
354
          <!-- Remove the skipTests line below to run TestBench tests -->
355
          <!-- <skipTests>true</skipTests> -->
356
        </configuration>
357
        <executions>
358
          <execution>
359
            <goals>
360
              <goal>integration-test</goal>
361
              <goal>verify</goal>
362
            </goals>
363
          </execution>
364
        </executions>
365
      </plugin>
366
      <!-- Browser Driver Downloader -->
367
      <plugin>
368
        <groupId>com.lazerycode.selenium</groupId>
369
        <artifactId>driver-binary-downloader-maven-plugin</artifactId>
370
        <version>1.0.14</version>
371
        <!-- has a bug -->
372
        <configuration>
373
          <rootStandaloneServerDirectory>selenium/bin</rootStandaloneServerDirectory>
374
          <downloadedZipFileDirectory>selenium/zip</downloadedZipFileDirectory>
375
        </configuration>
376
        <executions>
377
          <execution>
378
            <goals>
379
              <goal>selenium</goal>
380
            </goals>
381
          </execution>
382
        </executions>
383
      </plugin>
384
      <plugin>
385
        <groupId>external.atlassian.jgitflow</groupId>
386
        <artifactId>jgitflow-maven-plugin</artifactId>
387
        <version>1.0-m6</version>
388
        <configuration>
389
          <pushHotfixes>true</pushHotfixes>
390
          <pushReleases>true</pushReleases>
391
          <enableSshAgent>true</enableSshAgent>
392
          <allowSnapshots>true</allowSnapshots>
393
          <allowUntracked>true</allowUntracked>
394
        </configuration>
395
        <dependencies>
396
          <!-- upgrading dependency jsch.agent.version of jgit-flow plugin 
397
            to 0.1.53 in order have ssl key exchange algorithms compatible with openssh 
398
            6.7 -->
399
          <dependency>
400
            <groupId>com.jcraft</groupId>
401
            <artifactId>jsch</artifactId>
402
            <version>0.1.53</version>
403
          </dependency>
404
        </dependencies>
405
      </plugin>
406
      <plugin>
407
        <groupId>org.apache.maven.plugins</groupId>
408
        <artifactId>maven-enforcer-plugin</artifactId>
409
        <version>3.0.0-M2</version>
410
        <executions>
411
          <execution>
412
            <id>enforce</id>
413
            <configuration>
414
              <fail>false</fail>
415
              <skip>false</skip>
416
              <rules>
417
                <dependencyConvergence />
418
                <requireMavenVersion>
419
                  <version>[3.6.0,)</version>
420
                </requireMavenVersion>
421
              </rules>
422
            </configuration>
423
            <goals>
424
              <goal>enforce</goal>
425
            
426
            
427
            
428
            
429
            
430
              <!-- Binds by default to the lifecycle phase: validate -->
431
            </goals>
432
          </execution>
433
        </executions>
434
      </plugin>
435
    </plugins>
436
    <extensions>
437
      <extension>
438
        <groupId>org.apache.maven.wagon</groupId>
439
        <artifactId>wagon-scm</artifactId>
440
        <version>1.0-beta-6</version>
441
      </extension>
442
      <extension>
443
        <groupId>org.apache.maven.wagon</groupId>
444
        <artifactId>wagon-ssh</artifactId>
445
        <version>1.0-beta-6</version>
446
      </extension>
447
      <extension>
448
        <groupId>org.apache.maven.wagon</groupId>
449
        <artifactId>wagon-ssh-external</artifactId>
450
        <version>1.0-beta-6</version>
451
      </extension>
452
      <extension>
453
        <groupId>org.apache.maven.scm</groupId>
454
        <artifactId>maven-scm-manager-plexus</artifactId>
455
        <version>1.0</version>
456
      </extension>
457
      <extension>
458
        <groupId>org.apache.maven.scm</groupId>
459
        <artifactId>maven-scm-provider-svnexe</artifactId>
460
        <version>1.0</version>
461
      </extension>
462
      <!-- WebDAV plugin to upload snapshots -->
463
      <extension>
464
        <groupId>org.apache.maven.wagon</groupId>
465
        <artifactId>wagon-webdav</artifactId>
466
        <version>1.0-beta-2</version>
467
      </extension>
468
    </extensions>
469
    <pluginManagement>
470
      <plugins>
471
        <plugin>
472
          <artifactId>maven-eclipse-plugin</artifactId>
473
          <configuration>
474
            <wtpversion>2.0</wtpversion>
475
            <additionalProjectnatures>
476
              <projectnature>com.vaadin.integration.eclipse.widgetsetNature</projectnature>
477
            </additionalProjectnatures>
478
            <additionalBuildcommands>
479
              <buildcommand>com.vaadin.integration.eclipse.widgetsetBuilder</buildcommand>
480
              <buildcommand>com.vaadin.integration.eclipse.addonStylesBuilder</buildcommand>
481
            </additionalBuildcommands>
482
          </configuration>
483
        </plugin>
484
        <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
485
        <plugin>
486
          <groupId>org.eclipse.m2e</groupId>
487
          <artifactId>lifecycle-mapping</artifactId>
488
          <version>1.0.0</version>
489
          <configuration>
490
            <lifecycleMappingMetadata>
491
              <pluginExecutions>
492
                <pluginExecution>
493
                  <pluginExecutionFilter>
494
                    <groupId>com.lazerycode.selenium</groupId>
495
                    <artifactId>
496
                      driver-binary-downloader-maven-plugin
497
                    </artifactId>
498
                    <versionRange>[1.0.14,)</versionRange>
499
                    <goals>
500
                      <goal>selenium</goal>
501
                    </goals>
502
                  </pluginExecutionFilter>
503
                  <action>
504
                    <ignore />
505
                  </action>
506
                </pluginExecution>
507
              </pluginExecutions>
508
            </lifecycleMappingMetadata>
509
          </configuration>
510
        </plugin>
511
      </plugins>
512
    </pluginManagement>
513
  </build>
514
  <dependencies>
515
    <!-- ============ Vaadin ============ -->
516
    <dependency>
517
      <groupId>com.vaadin</groupId>
518
      <artifactId>vaadin-spring</artifactId>
519
      <version>${vaadin-spring.version}</version>
520
    </dependency>
521
    <dependency>
522
      <groupId>org.vaadin.spring.addons</groupId>
523
      <artifactId>vaadin-spring-addon-eventbus</artifactId>
524
      <version>${vaadin-spring-addon-eventbus.version}</version>
525
    </dependency>
526
    <dependency>
527
      <groupId>com.vaadin</groupId>
528
      <artifactId>vaadin-server</artifactId>
529
    </dependency>
530
    <dependency>
531
      <groupId>com.vaadin</groupId>
532
      <artifactId>vaadin-client-compiled</artifactId>
533
    </dependency>
534
    <!-- Needed when using the widgetset optimizer (custom ConnectorBundleLoaderFactory). 
535
      For widgetset compilation, vaadin-client-compiler is automatically added 
536
      on the compilation classpath by vaadin-maven-plugin so normally there is 
537
      no need for an explicit dependency. -->
538
    <!-- <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client-compiler</artifactId> 
539
      <version>${vaadin.version}</version> <scope>provided</scope> </dependency> -->
540
    <dependency>
541
      <groupId>com.vaadin</groupId>
542
      <artifactId>vaadin-client</artifactId>
543
      <scope>test</scope>
544
      <exclusions>
545
        <exclusion>
546
          <groupId>javax.validation</groupId>
547
          <artifactId>validation-api</artifactId>
548
        </exclusion>
549
      </exclusions>
550
    </dependency>
551
    <!-- disabling push for the moment because it does not work with run-jetty-run 
552
      due to the fact that the latest (even nightly) version of run-jetty-run uses 
553
      9.0.0 M3 which is incompatible with atmoshpere. this does work with the jetty 
554
      included in this pom which is 9.2.5.xx, implying that enabling the dependency 
555
      and running the web app via 'mvn jetty:run' works fine. -->
556
    <!-- <dependency> -->
557
    <!-- <groupId>com.vaadin</groupId> -->
558
    <!-- <artifactId>vaadin-push</artifactId> -->
559
    <!-- <version>${vaadin.version}</version> -->
560
    <!-- </dependency> -->
561
    <dependency>
562
      <groupId>com.vaadin</groupId>
563
      <artifactId>vaadin-themes</artifactId>
564
    </dependency>
565
    <!-- vaadin addons / extensions -->
566
    <dependency>
567
      <groupId>org.vaadin.addons</groupId>
568
      <artifactId>contextmenu</artifactId>
569
      <version>4.5</version>
570
    </dependency>
571
    <dependency>
572
      <groupId>org.vaadin.teemu</groupId>
573
      <artifactId>switch</artifactId>
574
      <version>2.0.4-SNAPSHOT</version>
575
    </dependency>
576
    <dependency>
577
      <groupId>org.vaadin</groupId>
578
      <artifactId>viritin</artifactId>
579
      <version>1.61</version>
580
    </dependency>
581
    <dependency>
582
      <groupId>org.vaadin.addon</groupId>
583
      <artifactId>v-leaflet</artifactId>
584
      <version>1.0.3</version>
585
    </dependency>
586
    <dependency>
587
      <groupId>org.vaadin.addons.lazyquerycontainer</groupId>
588
      <artifactId>vaadin-lazyquerycontainer</artifactId>
589
      <version>7.6.1.3</version>
590
    </dependency>
591
    <dependency>
592
      <groupId>com.flowingcode.vaadin.addons</groupId>
593
      <artifactId>error-window-vaadin</artifactId>
594
      <version>1.0.0</version>
595
    </dependency>
596
    <!-- 
597
    <dependency>
598
        <groupId>org.vaadin.spring.extensions</groupId>
599
        <artifactId>vaadin-spring-ext-test</artifactId>
600
        <version>0.0.8-SNAPSHOT</version>
601
        <scope>test</scope>
602
    </dependency>
603
     -->
604
    <!--     <dependency>
605
        only in the edit repo
606
      <groupId>org.vaadin.addons</groupId>
607
      <artifactId>lazyloadwrapper</artifactId>
608
      <version>0.1-alpha</version>
609
    </dependency> -->
610
    <!-- ============ cdmlib ============ -->
611
    <dependency>
612
      <groupId>eu.etaxonomy</groupId>
613
      <artifactId>cdmlib-remote</artifactId>
614
      <scope>compile</scope>
615
    </dependency>
616
    <dependency>
617
      <groupId>eu.etaxonomy</groupId>
618
      <artifactId>cdmlib-cache</artifactId>
619
      <version>${cdmlib.version}</version>
620
    </dependency>
621
    <dependency>
622
      <groupId>eu.etaxonomy</groupId>
623
      <artifactId>cdmlib-test</artifactId>
624
      <scope>test</scope>
625
    </dependency>
626
    <dependency>
627
      <groupId>eu.etaxonomy</groupId>
628
      <artifactId>cdmlib-db</artifactId>
629
      <version>${cdmlib.version}</version>
630
      <scope>test</scope>
631
    </dependency>
632
    <!-- ============ Other ============ -->
633
    <!-- 
634
        to override version number coming with vaadin client 
635
        version is managed in cdmlib-parent
636
    -->
637
    <dependency>
638
      <groupId>javax.validation</groupId>
639
      <artifactId>validation-api</artifactId>
640
    </dependency>
641
    <dependency>
642
      <groupId>org.springmodules</groupId>
643
      <artifactId>spring-modules-cache</artifactId>
644
      <version>0.7</version>
645
      <exclusions>
646
        <exclusion>
647
          <groupId>org.springframework</groupId>
648
          <artifactId>spring</artifactId>
649
        </exclusion>
650
        <exclusion>
651
          <groupId>org.springframework</groupId>
652
          <artifactId>spring-mock</artifactId>
653
        </exclusion>
654
      </exclusions>
655
      <scope>test</scope>
656
    </dependency>
657
    <dependency>
658
      <groupId>org.springframework</groupId>
659
      <artifactId>spring-test</artifactId>
660
      <scope>test</scope>
661
    </dependency>
662
    <dependency>
663
      <groupId>org.json</groupId>
664
      <artifactId>json</artifactId>
665
    </dependency>
666
    <dependency>
667
      <groupId>javax.servlet</groupId>
668
      <artifactId>javax.servlet-api</artifactId>
669
      <scope>provided</scope>
670
    </dependency>
671
    <!-- ========== testing ======== -->
672
    <dependency>
673
      <groupId>com.codeborne</groupId>
674
      <artifactId>selenide</artifactId>
675
      <version>4.7.1</version>
676
      <scope>test</scope>
677
    </dependency>
678
    <dependency>
679
      <groupId>org.springframework.boot</groupId>
680
      <artifactId>spring-boot</artifactId>
681
    </dependency>
682
    <dependency>
683
      <groupId>org.springframework.boot</groupId>
684
      <artifactId>spring-boot-starter-jetty</artifactId>
685
    </dependency>
686
    <dependency>
687
      <groupId>org.springframework</groupId>
688
      <artifactId>spring-beans</artifactId>
689
    </dependency>
690
  </dependencies>
691
</project>
(4-4/4)