Project

General

Profile

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