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