Project

General

Profile

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