jenkins bumping cdmlib.version to 5.29.0-SNAPSHOT
[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.29.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.29.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.eu/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>20211205</version>
105 </dependency>
106
107
108
109 <!--
110 <dependency>
111 updating to same version as in vaadin-server 7.7.28 due to https://vaadin.com/security/2021-10-27
112 is not possible due to code incompatibility
113 <groupId>org.jsoup</groupId>
114 <artifactId>jsoup</artifactId>
115 <version>1.14.3</version>
116 </dependency>
117 -->
118 <!--
119 <dependency>
120 < ! - - FIXME move to cdmlib-test - - >
121 <groupId>org.springframework</groupId>
122 <artifactId>spring-mock</artifactId>
123 <version>4.2.3.RELEASE</version>
124 </dependency>
125 <dependency>
126 <groupId>org.seleniumhq.selenium</groupId>
127 <artifactId>selenium-api</artifactId>
128 <version>3.5.3</version>
129 </dependency>
130 <dependency>
131 <groupId>org.seleniumhq.selenium</groupId>
132 <artifactId>selenium-support</artifactId>
133 <version>3.5.3</version>
134 </dependency>
135 -->
136 </dependencies>
137 </dependencyManagement>
138 <distributionManagement>
139 <repository>
140 <uniqueVersion>false</uniqueVersion>
141 <id>cybertaxonomy.eu</id>
142 <name>Edit Maven Repository</name>
143 <url>scpexe://cybertaxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo/</url>
144 <layout>default</layout>
145 </repository>
146 </distributionManagement>
147 <profiles>
148 <profile>
149 <id>align-cdmlib-version</id>
150 <activation>
151 <property>
152 <name>align-cdmlib-version</name>
153 </property>
154 </activation>
155 <build>
156 <plugins>
157 <plugin>
158 <groupId>com.google.code.maven-replacer-plugin</groupId>
159 <artifactId>replacer</artifactId>
160 <version>1.5.3</version>
161 <executions>
162 <execution>
163 <phase>process-sources</phase>
164 <goals>
165 <goal>replace</goal>
166 </goals>
167 </execution>
168 </executions>
169 <configuration>
170 <file>pom.xml</file>
171 <!-- \u003C = < , \u003E = > -->
172 <token>(\u003Ccdmlib\.version\u003E)[^\u003C]*</token>
173 <value>$1${project.version}</value>
174 </configuration>
175 </plugin>
176 </plugins>
177 </build>
178 </profile>
179 <profile>
180 <id>java8-doclint-disabled</id>
181 <activation>
182 <jdk>[1.8,)</jdk>
183 </activation>
184 <properties>
185 <javadoc.opts>-Xdoclint:none</javadoc.opts>
186 </properties>
187 </profile>
188 </profiles>
189 <build>
190 <resources>
191 <resource>
192 <!-- all main resources without filtering -->
193 <directory>src/main/resources</directory>
194 </resource>
195 <resource>
196 <!-- replace the place holders like ${...} in datasources.xml -->
197 <filtering>true</filtering>
198 <directory>src/test/resources</directory>
199 <targetPath>../test-classes</targetPath>
200 <includes>
201 <include>datasources.xml</include>
202 </includes>
203 </resource>
204 <resource>
205 <!-- all other test resources without filtering -->
206 <directory>src/test/resources</directory>
207 <targetPath>../test-classes</targetPath>
208 <excludes>
209 <exclude>datasources.xml</exclude>
210 </excludes>
211 </resource>
212 </resources>
213 <plugins>
214 <plugin>
215 <groupId>org.apache.maven.plugins</groupId>
216 <artifactId>maven-resources-plugin</artifactId>
217 <version>3.2.0</version>
218 </plugin>
219 <plugin>
220 <groupId>org.apache.maven.plugins</groupId>
221 <artifactId>maven-compiler-plugin</artifactId>
222 <version>3.9.0</version>
223 <configuration>
224 <source>${maven.compiler.source}</source>
225 <target>${maven.compiler.target}</target>
226 <encoding>UTF-8</encoding>
227 </configuration>
228 </plugin>
229 <plugin>
230 <groupId>org.apache.maven.plugins</groupId>
231 <artifactId>maven-surefire-plugin</artifactId>
232 <version>3.0.0-M5</version>
233 <configuration>
234 <argLine>-Xms256m -Xmx512m</argLine>
235 </configuration>
236 </plugin>
237 <!-- As we are doing "inplace" GWT compilation, ensure the widgetset -->
238 <!-- directory is cleaned properly -->
239 <plugin>
240 <artifactId>maven-clean-plugin</artifactId>
241 <version>3.1.0</version>
242 <configuration>
243 <filesets>
244 <fileset>
245 <directory>src/main/webapp/VAADIN/widgetsets</directory>
246 </fileset>
247 </filesets>
248 </configuration>
249 </plugin>
250 <plugin>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-javadoc-plugin</artifactId>
253 <version>3.3.1</version>
254 <configuration>
255 <doclint>${doclint}</doclint>
256 </configuration>
257 </plugin>
258 <plugin>
259 <groupId>org.apache.maven.plugins</groupId>
260 <artifactId>maven-war-plugin</artifactId>
261 <version>3.3.2</version>
262 <configuration>
263 <failOnMissingWebXml>false</failOnMissingWebXml>
264 <warSourceExcludes>WEB-INF/*,WEB-INF/datasources/*</warSourceExcludes>
265 </configuration>
266 </plugin>
267 <plugin>
268 <groupId>com.vaadin</groupId>
269 <artifactId>vaadin-maven-plugin</artifactId>
270 <version>${vaadin.plugin.version}</version>
271 <configuration>
272 <extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
273 <!-- We are doing "inplace" but into subdir VAADIN/widgetsets.
274 This way compatible with Vaadin eclipse plugin. -->
275 <webappDirectory>${basedir}/src/main/webapp/VAADIN/widgetsets</webappDirectory>
276 <hostedWebapp>${basedir}/src/main/webapp/VAADIN/widgetsets</hostedWebapp>
277 <!-- Most Vaadin apps don't need this stuff, guide that to target -->
278 <persistentunitcachedir>${project.build.directory}</persistentunitcachedir>
279 <deploy>${project.build.directory}/gwt-deploy</deploy>
280 <!-- Compile report is not typically needed either, saves hunreds
281 of mb disk -->
282 <compileReport>false</compileReport>
283 <noServer>true</noServer>
284 <!-- Remove draftCompile when project is ready -->
285 <draftCompile>false</draftCompile>
286 <style>OBF</style>
287 <runTarget>http://localhost:8080/</runTarget>
288 </configuration>
289 <executions>
290 <execution>
291 <configuration>
292 <!-- if you don't specify any modules, the plugin will find
293 them -->
294 <!-- <modules> <module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module>
295 </modules> -->
296 </configuration>
297 <goals>
298 <goal>clean</goal>
299 <goal>resources</goal>
300 <goal>update-theme</goal>
301 <goal>update-widgetset</goal>
302 <goal>compile-theme</goal>
303 <goal>compile</goal>
304 </goals>
305 </execution>
306 </executions>
307 </plugin>
308 <plugin>
309 <groupId>org.eclipse.jetty</groupId>
310 <artifactId>jetty-maven-plugin</artifactId>
311 <version>9.4.15.v20190215</version>
312 <!--
313 NOTE:
314 9.4.0.RC1 requires jdk 1.8, formerly we've been using version 9.1.3.v20140225 which was
315 the last version compatible to java 7, but this was causing other problems related to asm
316 which could not be easily solved.
317 -->
318 <configuration>
319 <useTestScope>true</useTestScope>
320 <scanIntervalSeconds>2</scanIntervalSeconds>
321 <systemProperties>
322 <force>true</force>
323 <systemProperty>
324 <name>cdm.datasource</name>
325 <value>h2_cdmTest</value>
326 </systemProperty>
327 <systemProperty>
328 <name>hibernate.hbm2ddl.auto</name>
329 <value>create-drop</value>
330 </systemProperty>
331 <systemProperty>
332 <!--
333 The lucene index should be placed into the target folder,
334 so user.home needs to be set to this folder. user.home needs to be overridden
335 since it already exists, thus the force option is turned on above
336 -->
337 <name>user.home</name>
338 <value>${basedir}/target/</value>
339 </systemProperty>
340 <systemProperty>
341 <!--
342 datasources.xml is prepared by <plugins><resources>..</resources> above
343 -->
344 <name>cdm.beanDefinitionFile</name>
345 <value>${project.build.directory}/test-classes/datasources.xml</value>
346 </systemProperty>
347 </systemProperties>
348 </configuration>
349 <dependencies>
350 <dependency>
351 <groupId>org.slf4j</groupId>
352 <artifactId>slf4j-log4j12</artifactId>
353 <version>1.6.4</version>
354 </dependency>
355 </dependencies>
356 </plugin>
357 <plugin>
358 <groupId>org.apache.maven.plugins</groupId>
359 <artifactId>maven-failsafe-plugin</artifactId>
360 <version>3.0.0-M5</version>
361 <configuration>
362 <!-- Remove the skipTests line below to run TestBench tests -->
363 <!-- <skipTests>true</skipTests> -->
364 </configuration>
365 <executions>
366 <execution>
367 <goals>
368 <goal>integration-test</goal>
369 <goal>verify</goal>
370 </goals>
371 </execution>
372 </executions>
373 </plugin>
374 <!-- Browser Driver Downloader -->
375 <plugin>
376 <groupId>com.lazerycode.selenium</groupId>
377 <artifactId>driver-binary-downloader-maven-plugin</artifactId>
378 <version>1.0.18</version>
379 <!-- has a bug -->
380 <configuration>
381 <rootStandaloneServerDirectory>selenium/bin</rootStandaloneServerDirectory>
382 <downloadedZipFileDirectory>selenium/zip</downloadedZipFileDirectory>
383 </configuration>
384 <executions>
385 <execution>
386 <goals>
387 <goal>selenium</goal>
388 </goals>
389 </execution>
390 </executions>
391 </plugin>
392 <plugin>
393 <groupId>ch.dvbern.oss.maven.jgitflow</groupId>
394 <artifactId>jgitflow-maven-plugin</artifactId>
395 <version>1.0-m8</version>
396 <configuration>
397 <pushHotfixes>true</pushHotfixes>
398 <pushReleases>true</pushReleases>
399 <enableSshAgent>true</enableSshAgent>
400 <allowSnapshots>true</allowSnapshots>
401 <allowUntracked>true</allowUntracked>
402 </configuration>
403 <dependencies>
404 <!-- upgrading dependency jsch.agent.version of jgit-flow plugin
405 to 0.1.53 in order have ssl key exchange algorithms compatible with openssh
406 6.7 -->
407 <dependency>
408 <groupId>com.jcraft</groupId>
409 <artifactId>jsch</artifactId>
410 <version>0.1.55</version>
411 </dependency>
412 </dependencies>
413 </plugin>
414 <plugin>
415 <groupId>org.apache.maven.plugins</groupId>
416 <artifactId>maven-enforcer-plugin</artifactId>
417 <version>3.0.0</version>
418 <executions>
419 <execution>
420 <id>enforce</id>
421 <configuration>
422 <fail>false</fail>
423 <skip>false</skip>
424 <rules>
425 <dependencyConvergence/>
426 <requireMavenVersion>
427 <version>[3.6.0,)</version>
428 </requireMavenVersion>
429 </rules>
430 </configuration>
431 <goals>
432 <goal>enforce</goal>
433
434
435
436 <!-- Binds by default to the lifecycle phase: validate -->
437 </goals>
438 </execution>
439 </executions>
440 </plugin>
441 </plugins>
442 <extensions>
443 <extension>
444 <groupId>org.apache.maven.wagon</groupId>
445 <artifactId>wagon-scm</artifactId>
446 <version>3.5.1</version>
447 </extension>
448 <extension>
449 <groupId>org.apache.maven.wagon</groupId>
450 <artifactId>wagon-ssh</artifactId>
451 <version>3.5.1</version>
452 </extension>
453 <extension>
454 <groupId>org.apache.maven.wagon</groupId>
455 <artifactId>wagon-ssh-external</artifactId>
456 <version>3.5.1</version>
457 </extension>
458 <extension>
459 <groupId>org.apache.maven.scm</groupId>
460 <artifactId>maven-scm-manager-plexus</artifactId>
461 <version>1.12.2</version>
462 </extension>
463 <extension>
464 <groupId>org.apache.maven.scm</groupId>
465 <artifactId>maven-scm-provider-svnexe</artifactId>
466 <version>1.12.2</version>
467 </extension>
468 <!-- WebDAV plugin to upload snapshots -->
469 <extension>
470 <groupId>org.apache.maven.wagon</groupId>
471 <artifactId>wagon-webdav-jackrabbit</artifactId>
472 <version>3.5.1</version>
473 </extension>
474 </extensions>
475 <pluginManagement>
476 <plugins>
477 <plugin>
478 <groupId>org.apache.maven.plugins</groupId>
479 <artifactId>maven-eclipse-plugin</artifactId>
480 <version>2.10</version>
481 <configuration>
482 <wtpversion>2.0</wtpversion>
483 <additionalProjectnatures>
484 <projectnature>com.vaadin.integration.eclipse.widgetsetNature</projectnature>
485 </additionalProjectnatures>
486 <additionalBuildcommands>
487 <buildcommand>com.vaadin.integration.eclipse.widgetsetBuilder</buildcommand>
488 <buildcommand>com.vaadin.integration.eclipse.addonStylesBuilder</buildcommand>
489 </additionalBuildcommands>
490 </configuration>
491 </plugin>
492 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
493 <plugin>
494 <groupId>org.eclipse.m2e</groupId>
495 <artifactId>lifecycle-mapping</artifactId>
496 <version>1.0.0</version>
497 <configuration>
498 <lifecycleMappingMetadata>
499 <pluginExecutions>
500 <pluginExecution>
501 <pluginExecutionFilter>
502 <groupId>com.lazerycode.selenium</groupId>
503 <artifactId>
504 driver-binary-downloader-maven-plugin
505 </artifactId>
506 <versionRange>[1.0.14,)</versionRange>
507 <goals>
508 <goal>selenium</goal>
509 </goals>
510 </pluginExecutionFilter>
511 <action>
512 <ignore/>
513 </action>
514 </pluginExecution>
515 </pluginExecutions>
516 </lifecycleMappingMetadata>
517 </configuration>
518 </plugin>
519 </plugins>
520 </pluginManagement>
521 </build>
522 <dependencies>
523 <!-- ============ Vaadin ============ -->
524 <dependency>
525 <groupId>com.vaadin</groupId>
526 <artifactId>vaadin-spring</artifactId>
527 <version>${vaadin-spring.version}</version>
528 </dependency>
529 <dependency>
530 <groupId>org.vaadin.spring.addons</groupId>
531 <artifactId>vaadin-spring-addon-eventbus</artifactId>
532 <version>${vaadin-spring-addon-eventbus.version}</version>
533 </dependency>
534 <dependency>
535 <groupId>com.vaadin</groupId>
536 <artifactId>vaadin-server</artifactId>
537
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>