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