Implemented an example for a controller, that fetches remote-data
[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</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         </properties>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>org.springframework.boot</groupId>
24                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>org.springframework.boot</groupId>
28                         <artifactId>spring-boot-starter-web</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>org.springframework.boot</groupId>
32                         <artifactId>spring-boot-starter-webflux</artifactId>
33                 </dependency>
34
35                 <dependency>
36                         <groupId>org.springframework.boot</groupId>
37                         <artifactId>spring-boot-starter-test</artifactId>
38                         <scope>test</scope>
39                         <exclusions>
40                                 <exclusion>
41                                         <groupId>org.junit.vintage</groupId>
42                                         <artifactId>junit-vintage-engine</artifactId>
43                                 </exclusion>
44                         </exclusions>
45                 </dependency>
46                 <dependency>
47                         <groupId>io.projectreactor</groupId>
48                         <artifactId>reactor-test</artifactId>
49                         <scope>test</scope>
50                 </dependency>
51         </dependencies>
52
53         <build>
54                 <plugins>
55                         <plugin>
56                                 <groupId>org.springframework.boot</groupId>
57                                 <artifactId>spring-boot-maven-plugin</artifactId>
58                         </plugin>
59                 </plugins>
60         </build>
61
62 </project>