Spring Initializr: 2.2.4 / Spring Webflux / Thymeleaf
[demos/spring-boot] / 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.4.RELEASE</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.demos</groupId>
12         <artifactId>TEMPLATE</artifactId>
13         <version>0.0.1-SNAPSHOT</version>
14         <name>Demo: TEMPLATE</name>
15
16         <properties>
17                 <java.version>1.8</java.version>
18         </properties>
19
20         <dependencies>
21                 <dependency>
22                         <groupId>org.springframework.boot</groupId>
23                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
24                 </dependency>
25                 <dependency>
26                         <groupId>org.springframework.boot</groupId>
27                         <artifactId>spring-boot-starter-webflux</artifactId>
28                 </dependency>
29
30                 <dependency>
31                         <groupId>org.springframework.boot</groupId>
32                         <artifactId>spring-boot-starter-test</artifactId>
33                         <scope>test</scope>
34                         <exclusions>
35                                 <exclusion>
36                                         <groupId>org.junit.vintage</groupId>
37                                         <artifactId>junit-vintage-engine</artifactId>
38                                 </exclusion>
39                         </exclusions>
40                 </dependency>
41                 <dependency>
42                         <groupId>io.projectreactor</groupId>
43                         <artifactId>reactor-test</artifactId>
44                         <scope>test</scope>
45                 </dependency>
46
47                 <dependency>
48                         <groupId>org.springframework.boot</groupId>
49                         <artifactId>spring-boot-devtools</artifactId>
50                         <optional>true</optional>
51                 </dependency>
52         </dependencies>
53
54         <build>
55                 <plugins>
56                         <plugin>
57                                 <groupId>org.springframework.boot</groupId>
58                                 <artifactId>spring-boot-maven-plugin</artifactId>
59                         </plugin>
60                 </plugins>
61         </build>
62
63 </project>