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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>2.2.2.RELEASE</version>
9 <relativePath/> <!-- lookup parent from repository -->
11 <groupId>de.juplo.demos</groupId>
12 <artifactId>integrationtest</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>integrationtest</name>
15 <description>Demo project for Spring Boot</description>
18 <java.version>1.8</java.version>
19 <mockserver.version>5.8.1</mockserver.version>
20 <testcontainers-nginx.version>1.12.4</testcontainers-nginx.version>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-starter-webflux</artifactId>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-thymeleaf</artifactId>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-test</artifactId>
39 <groupId>org.junit.vintage</groupId>
40 <artifactId>junit-vintage-engine</artifactId>
45 <groupId>org.mock-server</groupId>
46 <artifactId>mockserver-netty</artifactId>
47 <version>${mockserver.version}</version>
51 <groupId>org.testcontainers</groupId>
52 <artifactId>nginx</artifactId>
53 <version>${testcontainers-nginx.version}</version>
57 <groupId>io.projectreactor</groupId>
58 <artifactId>reactor-test</artifactId>
63 <groupId>org.springframework.boot</groupId>
64 <artifactId>spring-boot-devtools</artifactId>
65 <optional>true</optional>
72 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-maven-plugin</artifactId>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-failsafe-plugin</artifactId>