4e5b16cabf0eae25d0f992d9486631b1f195e474
[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>3.1.0-M2</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         <description>TEMPLATE for a Demo project for Spring Boot</description>
16         <properties>
17                 <java.version>17</java.version>
18         </properties>
19         <dependencies>
20                 <dependency>
21                         <groupId>org.springframework.boot</groupId>
22                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.springframework.boot</groupId>
26                         <artifactId>spring-boot-starter-webflux</artifactId>
27                 </dependency>
28
29                 <dependency>
30                         <groupId>org.springframework.boot</groupId>
31                         <artifactId>spring-boot-starter-test</artifactId>
32                         <scope>test</scope>
33                 </dependency>
34                 <dependency>
35                         <groupId>io.projectreactor</groupId>
36                         <artifactId>reactor-test</artifactId>
37                         <scope>test</scope>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.springframework.boot</groupId>
41                         <artifactId>spring-boot-devtools</artifactId>
42                         <scope>runtime</scope>
43                         <optional>true</optional>
44                 </dependency>
45         </dependencies>
46
47         <build>
48                 <plugins>
49                         <plugin>
50                                 <groupId>org.springframework.boot</groupId>
51                                 <artifactId>spring-boot-maven-plugin</artifactId>
52                         </plugin>
53                 </plugins>
54         </build>
55         <repositories>
56                 <repository>
57                         <id>spring-milestones</id>
58                         <name>Spring Milestones</name>
59                         <url>https://repo.spring.io/milestone</url>
60                         <snapshots>
61                                 <enabled>false</enabled>
62                         </snapshots>
63                 </repository>
64         </repositories>
65         <pluginRepositories>
66                 <pluginRepository>
67                         <id>spring-milestones</id>
68                         <name>Spring Milestones</name>
69                         <url>https://repo.spring.io/milestone</url>
70                         <snapshots>
71                                 <enabled>false</enabled>
72                         </snapshots>
73                 </pluginRepository>
74         </pluginRepositories>
75
76 </project>