Project

General

Profile

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