WIP:itflux
[demos/testing] / 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"
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>
5         <parent>
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 -->
10         </parent>
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>
16
17         <properties>
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>
21         </properties>
22
23         <dependencies>
24                 <dependency>
25                         <groupId>org.springframework.boot</groupId>
26                         <artifactId>spring-boot-starter-webflux</artifactId>
27                 </dependency>
28                 <dependency>
29                         <groupId>org.springframework.boot</groupId>
30                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
31                 </dependency>
32
33                 <dependency>
34                         <groupId>org.springframework.boot</groupId>
35                         <artifactId>spring-boot-starter-test</artifactId>
36                         <scope>test</scope>
37                         <exclusions>
38                                 <exclusion>
39                                         <groupId>org.junit.vintage</groupId>
40                                         <artifactId>junit-vintage-engine</artifactId>
41                                 </exclusion>
42                         </exclusions>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.mock-server</groupId>
46                         <artifactId>mockserver-netty</artifactId>
47                         <version>${mockserver.version}</version>
48                         <scope>test</scope>
49                 </dependency>
50                 <dependency>
51                         <groupId>org.testcontainers</groupId>
52                         <artifactId>nginx</artifactId>
53                         <version>${testcontainers-nginx.version}</version>
54                         <scope>test</scope>
55                 </dependency>
56                 <dependency>
57                         <groupId>io.projectreactor</groupId>
58                         <artifactId>reactor-test</artifactId>
59                         <scope>test</scope>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>org.springframework.boot</groupId>
64                         <artifactId>spring-boot-devtools</artifactId>
65                         <optional>true</optional>
66                 </dependency>
67         </dependencies>
68
69         <build>
70                 <plugins>
71                         <plugin>
72                                 <groupId>org.springframework.boot</groupId>
73                                 <artifactId>spring-boot-maven-plugin</artifactId>
74                         </plugin>
75                         <plugin>
76                                 <groupId>org.apache.maven.plugins</groupId>
77                                 <artifactId>maven-failsafe-plugin</artifactId>
78                         </plugin>
79                 </plugins>
80         </build>
81
82 </project>