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