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.4.RELEASE</version>
9 <relativePath/> <!-- lookup parent from repository -->
11 <groupId>de.juplo.demos</groupId>
12 <artifactId>multidimensional</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>Demo: Multidimensional Map With Dynamic Binding</name>
15 <description>Demo project for the blog-article "Using A Map With Values Of Type Map In A Spring/Thymeleaf-Form"</description>
18 <java.version>1.8</java.version>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter-thymeleaf</artifactId>
27 <groupId>org.springframework.boot</groupId>
28 <artifactId>spring-boot-starter-webflux</artifactId>
32 <groupId>org.springframework.boot</groupId>
33 <artifactId>spring-boot-starter-test</artifactId>
37 <groupId>org.junit.vintage</groupId>
38 <artifactId>junit-vintage-engine</artifactId>
43 <groupId>io.projectreactor</groupId>
44 <artifactId>reactor-test</artifactId>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-devtools</artifactId>
51 <optional>true</optional>
58 <groupId>org.springframework.boot</groupId>
59 <artifactId>spring-boot-maven-plugin</artifactId>