ref #10302 adapt label for code edition in name relationships (validation & orth...
[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.38.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.38.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 <dependency>
115 updating to same version as in vaadin-server 7.7.28 due to https://vaadin.com/security/2021-10-27
116 is not possible due to code incompatibility
117 <groupId>org.jsoup</groupId>
118 <artifactId>jsoup</artifactId>
119 <version>1.14.3</version>
120 </dependency>
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.org/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.2.0</version>
222 </plugin>
223 <plugin>
224 <groupId>org.apache.maven.plugins</groupId>
225 <artifactId>maven-compiler-plugin</artifactId>
226 <version>3.9.0</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>3.0.0-M7</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>3.1.0</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>3.3.1</version>
258 <configuration>
259 <doclint>${doclint}</doclint>
260 </configuration>
261 </plugin>
262 <plugin>
263 <groupId>org.apache.maven.plugins</groupId>
264 <artifactId>maven-war-plugin</artifactId>
265 <version>3.3.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>3.0.0-M5</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.18</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>ch.dvbern.oss.maven.jgitflow</groupId>
398 <artifactId>jgitflow-maven-plugin</artifactId>
399 <version>1.0-m8</version> -->
400 <groupId>external.atlassian.jgitflow</groupId>
401 <artifactId>jgitflow-maven-plugin</artifactId>
402 <version>1.0-m6</version>
403 <configuration>
404 <pushHotfixes>true</pushHotfixes>
405 <pushReleases>true</pushReleases>
406 <enableSshAgent>true</enableSshAgent>
407 <allowSnapshots>true</allowSnapshots>
408 <allowUntracked>true</allowUntracked>
409 </configuration>
410 <dependencies>
411 <!-- upgrading dependency jsch.agent.version of jgit-flow plugin
412 to 0.1.53 in order have ssl key exchange algorithms compatible with openssh
413 6.7 -->
414 <dependency>
415 <groupId>com.jcraft</groupId>
416 <artifactId>jsch</artifactId>
417 <version>0.1.55</version>
418 </dependency>
419 </dependencies>
420 </plugin>
421 <plugin>
422 <groupId>org.apache.maven.plugins</groupId>
423 <artifactId>maven-enforcer-plugin</artifactId>
424 <version>3.1.0</version>
425 <executions>
426 <execution>
427 <id>enforce</id>
428 <configuration>
429 <fail>false</fail>
430 <skip>false</skip>
431 <rules>
432 <dependencyConvergence />
433 <requireMavenVersion>
434 <version>[3.6.3,)</version>
435 </requireMavenVersion>
436 </rules>
437 </configuration>
438 <goals>
439 <goal>enforce</goal>
440
441
442
443
444
445
446
447 <!-- Binds by default to the lifecycle phase: validate -->
448 </goals>
449 </execution>
450 </executions>
451 </plugin>
452 </plugins>
453 <extensions>
454 <extension>
455 <groupId>org.apache.maven.wagon</groupId>
456 <artifactId>wagon-scm</artifactId>
457 <version>3.5.1</version>
458 </extension>
459 <extension>
460 <groupId>org.apache.maven.wagon</groupId>
461 <artifactId>wagon-ssh</artifactId>
462 <version>3.5.1</version>
463 </extension>
464 <extension>
465 <groupId>org.apache.maven.wagon</groupId>
466 <artifactId>wagon-ssh-external</artifactId>
467 <version>3.5.1</version>
468 </extension>
469 <extension>
470 <groupId>org.apache.maven.scm</groupId>
471 <artifactId>maven-scm-manager-plexus</artifactId>
472 <version>1.12.2</version>
473 </extension>
474 <extension>
475 <groupId>org.apache.maven.scm</groupId>
476 <artifactId>maven-scm-provider-svnexe</artifactId>
477 <version>1.12.2</version>
478 </extension>
479 <!-- WebDAV plugin to upload snapshots -->
480 <extension>
481 <groupId>org.apache.maven.wagon</groupId>
482 <artifactId>wagon-webdav-jackrabbit</artifactId>
483 <version>3.5.1</version>
484 </extension>
485 </extensions>
486 <pluginManagement>
487 <plugins>
488 <plugin>
489 <groupId>org.apache.maven.plugins</groupId>
490 <artifactId>maven-eclipse-plugin</artifactId>
491 <version>2.10</version>
492 <configuration>
493 <wtpversion>2.0</wtpversion>
494 <additionalProjectnatures>
495 <projectnature>com.vaadin.integration.eclipse.widgetsetNature</projectnature>
496 </additionalProjectnatures>
497 <additionalBuildcommands>
498 <buildcommand>com.vaadin.integration.eclipse.widgetsetBuilder</buildcommand>
499 <buildcommand>com.vaadin.integration.eclipse.addonStylesBuilder</buildcommand>
500 </additionalBuildcommands>
501 </configuration>
502 </plugin>
503 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
504 <plugin>
505 <groupId>org.eclipse.m2e</groupId>
506 <artifactId>lifecycle-mapping</artifactId>
507 <version>1.0.0</version>
508 <configuration>
509 <lifecycleMappingMetadata>
510 <pluginExecutions>
511 <pluginExecution>
512 <pluginExecutionFilter>
513 <groupId>com.lazerycode.selenium</groupId>
514 <artifactId>
515 driver-binary-downloader-maven-plugin
516 </artifactId>
517 <versionRange>[1.0.14,)</versionRange>
518 <goals>
519 <goal>selenium</goal>
520 </goals>
521 </pluginExecutionFilter>
522 <action>
523 <ignore />
524 </action>
525 </pluginExecution>
526 </pluginExecutions>
527 </lifecycleMappingMetadata>
528 </configuration>
529 </plugin>
530 </plugins>
531 </pluginManagement>
532 </build>
533 <dependencies>
534 <!-- ============ Vaadin ============ -->
535 <dependency>
536 <groupId>com.vaadin</groupId>
537 <artifactId>vaadin-spring</artifactId>
538 <version>${vaadin-spring.version}</version>
539 </dependency>
540 <dependency>
541 <groupId>org.vaadin.spring.addons</groupId>
542 <artifactId>vaadin-spring-addon-eventbus</artifactId>
543 <version>${vaadin-spring-addon-eventbus.version}</version>
544 </dependency>
545 <dependency>
546 <groupId>com.vaadin</groupId>
547 <artifactId>vaadin-server</artifactId>
548
549
550
551
552
553
554
555 <!--
556 vaadin-server dependency jsoup upgraded due to https://vaadin.com/security/2021-10-27
557 further updating of vaadin 7 is no longer possible without purchasing the pro license
558 -->
559 </dependency>
560 <dependency>
561 <groupId>com.vaadin</groupId>
562 <artifactId>vaadin-client-compiled</artifactId>
563 </dependency>
564 <!-- Needed when using the widgetset optimizer (custom ConnectorBundleLoaderFactory).
565 For widgetset compilation, vaadin-client-compiler is automatically added
566 on the compilation classpath by vaadin-maven-plugin so normally there is
567 no need for an explicit dependency. -->
568 <!-- <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client-compiler</artifactId>
569 <version>${vaadin.version}</version> <scope>provided</scope> </dependency> -->
570 <dependency>
571 <groupId>com.vaadin</groupId>
572 <artifactId>vaadin-client</artifactId>
573 <scope>test</scope>
574 <exclusions>
575 <exclusion>
576 <groupId>javax.validation</groupId>
577 <artifactId>validation-api</artifactId>
578 </exclusion>
579 </exclusions>
580 </dependency>
581 <!-- disabling push for the moment because it does not work with run-jetty-run
582 due to the fact that the latest (even nightly) version of run-jetty-run uses
583 9.0.0 M3 which is incompatible with atmoshpere. this does work with the jetty
584 included in this pom which is 9.2.5.xx, implying that enabling the dependency
585 and running the web app via 'mvn jetty:run' works fine. -->
586 <!-- <dependency> -->
587 <!-- <groupId>com.vaadin</groupId> -->
588 <!-- <artifactId>vaadin-push</artifactId> -->
589 <!-- <version>${vaadin.version}</version> -->
590 <!-- </dependency> -->
591 <dependency>
592 <groupId>com.vaadin</groupId>
593 <artifactId>vaadin-themes</artifactId>
594 </dependency>
595 <!-- vaadin addons / extensions -->
596 <dependency>
597 <groupId>org.vaadin.addons</groupId>
598 <artifactId>contextmenu</artifactId>
599 <version>4.5</version>
600 </dependency>
601 <dependency>
602 <groupId>org.vaadin.teemu</groupId>
603 <artifactId>switch</artifactId>
604 <version>2.0.4-SNAPSHOT</version>
605 </dependency>
606 <dependency>
607 <groupId>org.vaadin</groupId>
608 <artifactId>viritin</artifactId>
609 <version>1.61</version>
610 </dependency>
611 <dependency>
612 <groupId>org.vaadin.addon</groupId>
613 <artifactId>v-leaflet</artifactId>
614 <version>1.0.3</version>
615 </dependency>
616 <dependency>
617 <groupId>org.vaadin.addons.lazyquerycontainer</groupId>
618 <artifactId>vaadin-lazyquerycontainer</artifactId>
619 <version>7.6.1.3</version>
620 </dependency>
621 <dependency>
622 <groupId>com.flowingcode.vaadin.addons</groupId>
623 <artifactId>error-window-vaadin</artifactId>
624 <version>1.0.0</version>
625 </dependency>
626 <!--
627 <dependency>
628 <groupId>org.vaadin.spring.extensions</groupId>
629 <artifactId>vaadin-spring-ext-test</artifactId>
630 <version>0.0.8-SNAPSHOT</version>
631 <scope>test</scope>
632 </dependency>
633 -->
634 <!-- <dependency>
635 only in the edit repo
636 <groupId>org.vaadin.addons</groupId>
637 <artifactId>lazyloadwrapper</artifactId>
638 <version>0.1-alpha</version>
639 </dependency> -->
640 <!-- ============ cdmlib ============ -->
641 <dependency>
642 <groupId>eu.etaxonomy</groupId>
643 <artifactId>cdmlib-remote</artifactId>
644 <scope>compile</scope>
645 </dependency>
646 <dependency>
647 <groupId>eu.etaxonomy</groupId>
648 <artifactId>cdmlib-cache</artifactId>
649 <version>${cdmlib.version}</version>
650 </dependency>
651 <dependency>
652 <groupId>eu.etaxonomy</groupId>
653 <artifactId>cdmlib-test</artifactId>
654 <scope>test</scope>
655 </dependency>
656 <dependency>
657 <groupId>eu.etaxonomy</groupId>
658 <artifactId>cdmlib-db</artifactId>
659 <version>${cdmlib.version}</version>
660 <scope>test</scope>
661 </dependency>
662 <!-- ============ Other ============ -->
663 <!--
664 to override version number coming with vaadin client
665 version is managed in cdmlib-parent
666 -->
667 <dependency>
668 <groupId>javax.validation</groupId>
669 <artifactId>validation-api</artifactId>
670 </dependency>
671 <!-- <dependency>
672 <groupId>org.springmodules</groupId>
673 <artifactId>spring-modules-cache</artifactId>
674 <version>0.7</version>
675 <exclusions>
676 <exclusion>
677 <groupId>org.springframework</groupId>
678 <artifactId>spring</artifactId>
679 </exclusion>
680 <exclusion>
681 <groupId>org.springframework</groupId>
682 <artifactId>spring-mock</artifactId>
683 </exclusion>
684 </exclusions>
685 <scope>test</scope>
686 </dependency> -->
687 <dependency>
688 <groupId>org.springframework</groupId>
689 <artifactId>spring-test</artifactId>
690 <scope>test</scope>
691 </dependency>
692 <dependency>
693 <groupId>org.json</groupId>
694 <artifactId>json</artifactId>
695 </dependency>
696 <dependency>
697 <groupId>javax.servlet</groupId>
698 <artifactId>javax.servlet-api</artifactId>
699 <scope>provided</scope>
700 </dependency>
701 <!-- ========== testing ======== -->
702 <dependency>
703 <groupId>com.codeborne</groupId>
704 <artifactId>selenide</artifactId>
705 <version>4.7.1</version>
706 <scope>test</scope>
707 </dependency>
708 <dependency>
709 <groupId>org.springframework.boot</groupId>
710 <artifactId>spring-boot</artifactId>
711 </dependency>
712 <dependency>
713 <groupId>org.springframework.boot</groupId>
714 <artifactId>spring-boot-starter-jetty</artifactId>
715 </dependency>
716 <dependency>
717 <groupId>org.springframework</groupId>
718 <artifactId>spring-beans</artifactId>
719 </dependency>
720 </dependencies>
721 </project>