Implemented a form with a single checkbox to study its behavior
[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>checkbox</artifactId>
13         <version>0.0.1-SNAPSHOT</version>
14         <name>Demo: Behavior Of A Checkbox</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                 <dependency>
30                         <groupId>org.projectlombok</groupId>
31                         <artifactId>lombok</artifactId>
32                         <scope>provided</scope>
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
52                 <dependency>
53                         <groupId>org.springframework.boot</groupId>
54                         <artifactId>spring-boot-devtools</artifactId>
55                         <optional>true</optional>
56                 </dependency>
57         </dependencies>
58
59         <build>
60                 <plugins>
61                         <plugin>
62                                 <groupId>org.springframework.boot</groupId>
63                                 <artifactId>spring-boot-maven-plugin</artifactId>
64                         </plugin>
65                 </plugins>
66         </build>
67
68 </project>