TODO: Spring-Security -> Principal aus Header bestimmen
[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>interceptor</artifactId>
13         <version>0.0.1-SNAPSHOT</version>
14         <name>Status-Code-HandlerInterceptor</name>
15         <description>Demo: Send Status-Code in HandlerInterceptor</description>
16
17         <properties>
18                 <java.version>17</java.version>
19         </properties>
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-web</artifactId>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.springframework.boot</groupId>
31                         <artifactId>spring-boot-starter-security</artifactId>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.projectlombok</groupId>
35                         <artifactId>lombok</artifactId>
36                 </dependency>
37
38                 <dependency>
39                         <groupId>org.springframework.boot</groupId>
40                         <artifactId>spring-boot-starter-test</artifactId>
41                         <scope>test</scope>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.springframework.security</groupId>
45                         <artifactId>spring-security-test</artifactId>
46                         <scope>test</scope>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.assertj</groupId>
50                         <artifactId>assertj-core</artifactId>
51                         <scope>test</scope>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.springframework.boot</groupId>
55                         <artifactId>spring-boot-devtools</artifactId>
56                         <scope>runtime</scope>
57                         <optional>true</optional>
58                 </dependency>
59         </dependencies>
60
61         <build>
62                 <plugins>
63                         <plugin>
64                                 <groupId>org.springframework.boot</groupId>
65                                 <artifactId>spring-boot-maven-plugin</artifactId>
66                         </plugin>
67                 </plugins>
68         </build>
69         <repositories>
70                 <repository>
71                         <id>spring-milestones</id>
72                         <name>Spring Milestones</name>
73                         <url>https://repo.spring.io/milestone</url>
74                         <snapshots>
75                                 <enabled>false</enabled>
76                         </snapshots>
77                 </repository>
78         </repositories>
79         <pluginRepositories>
80                 <pluginRepository>
81                         <id>spring-milestones</id>
82                         <name>Spring Milestones</name>
83                         <url>https://repo.spring.io/milestone</url>
84                         <snapshots>
85                                 <enabled>false</enabled>
86                         </snapshots>
87                 </pluginRepository>
88         </pluginRepositories>
89
90 </project>