|
12 | 12 |
|
13 | 13 | <name>demoapp</name> |
14 | 14 |
|
15 | | - <dependencyManagement> |
16 | | - <dependencies> |
17 | | - <!-- Security fixes: force safe transitive versions --> |
18 | | - <dependency> |
19 | | - <groupId>org.springframework.security</groupId> |
20 | | - <artifactId>spring-security-web</artifactId> |
21 | | - <version>6.5.11</version> |
22 | | - </dependency> |
23 | | - <dependency> |
24 | | - <groupId>org.springframework.security</groupId> |
25 | | - <artifactId>spring-security-config</artifactId> |
26 | | - <version>6.5.11</version> |
27 | | - </dependency> |
28 | | - <dependency> |
29 | | - <groupId>org.apache.tomcat.embed</groupId> |
30 | | - <artifactId>tomcat-embed-core</artifactId> |
31 | | - <version>10.1.56</version> |
32 | | - </dependency> |
33 | | - <dependency> |
34 | | - <groupId>org.apache.tomcat.embed</groupId> |
35 | | - <artifactId>tomcat-embed-websocket</artifactId> |
36 | | - <version>10.1.56</version> |
37 | | - </dependency> |
38 | | - <dependency> |
39 | | - <groupId>org.apache.tomcat.embed</groupId> |
40 | | - <artifactId>tomcat-embed-el</artifactId> |
41 | | - <version>10.1.56</version> |
42 | | - </dependency> |
43 | | - </dependencies> |
44 | | - </dependencyManagement> |
45 | | - |
46 | 15 | <!-- ACTUAL DEPENDENCIES --> |
47 | 16 | <dependencies> |
48 | 17 |
|
|
66 | 35 | </exclusions> |
67 | 36 | </dependency> |
68 | 37 |
|
69 | | - <dependency> |
70 | | - <groupId>com.nimbusds</groupId> |
71 | | - <artifactId>nimbus-jose-jwt</artifactId> |
72 | | - <version>9.39.1</version> |
73 | | - </dependency> |
74 | 38 |
|
75 | 39 | <!-- CDS SPRING BOOT STARTER --> |
76 | 40 | <dependency> |
|
99 | 63 | <groupId>org.springframework.boot</groupId> |
100 | 64 | <artifactId>spring-boot-devtools</artifactId> |
101 | 65 | <optional>true</optional> |
102 | | - <exclusions> |
103 | | - <exclusion> |
104 | | - <groupId>org.springframework.boot</groupId> |
105 | | - <artifactId>spring-boot</artifactId> |
106 | | - </exclusion> |
107 | | - <exclusion> |
108 | | - <groupId>org.springframework.boot</groupId> |
109 | | - <artifactId>spring-boot-autoconfigure</artifactId> |
110 | | - </exclusion> |
111 | | - </exclusions> |
112 | 66 | </dependency> |
113 | 67 |
|
114 | 68 | <dependency> |
|
120 | 74 | <dependency> |
121 | 75 | <groupId>com.h2database</groupId> |
122 | 76 | <artifactId>h2</artifactId> |
123 | | - <version>2.4.240</version> |
124 | 77 | <scope>runtime</scope> |
125 | 78 | </dependency> |
126 | 79 |
|
|
0 commit comments