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