Project

General

Profile

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