Skip to content

Commit ad7ffe2

Browse files
Upgrade dependencies
1 parent 2dcdba7 commit ad7ffe2

File tree

4 files changed

+199
-2
lines changed

4 files changed

+199
-2
lines changed

spring-boot-with-admin/admin/pom.xml

Lines changed: 169 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,185 @@
3737

3838
<spring-boot-admin.version>3.4.1</spring-boot-admin.version>
3939
<spring-cloud-starter-client.version>4.2.0</spring-cloud-starter-client.version>
40-
<spring-starter-parent.version>3.4.1</spring-starter-parent.version>
4140
</properties>
4241

4342
<dependencyManagement>
4443
<dependencies>
4544
<dependency>
4645
<groupId>org.springframework.boot</groupId>
4746
<artifactId>spring-boot-starter-parent</artifactId>
48-
<version>${spring-starter-parent.version}</version>
47+
<version>2.6.7</version>
4948
<type>pom</type>
5049
<scope>import</scope>
5150
</dependency>
51+
<dependency>
52+
<groupId>org.springframework</groupId>
53+
<artifactId>spring-beans</artifactId>
54+
<version>6.2.1</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.springframework</groupId>
58+
<artifactId>spring-context</artifactId>
59+
<version>6.2.1</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>io.github.classgraph</groupId>
63+
<artifactId>classgraph</artifactId>
64+
<version>4.8.179</version>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.postgresql</groupId>
68+
<artifactId>postgresql</artifactId>
69+
<version>42.7.5</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.yaml</groupId>
73+
<artifactId>snakeyaml</artifactId>
74+
<version>2.3</version>
75+
</dependency>
76+
<dependency>
77+
<groupId>ch.qos.logback</groupId>
78+
<artifactId>logback-classic</artifactId>
79+
<version>1.5.16</version>
80+
<scope>test</scope>
81+
</dependency>
82+
<dependency>
83+
<groupId>ch.qos.logback</groupId>
84+
<artifactId>logback-core</artifactId>
85+
<version>1.5.16</version>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.springframework.boot</groupId>
89+
<artifactId>spring-boot-autoconfigure</artifactId>
90+
<version>3.4.1</version>
91+
</dependency>
92+
<dependency>
93+
<groupId>org.springframework</groupId>
94+
<artifactId>spring-core</artifactId>
95+
<version>6.2.1</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>org.springframework</groupId>
99+
<artifactId>spring-expression</artifactId>
100+
<version>6.2.1</version>
101+
</dependency>
102+
<dependency>
103+
<groupId>com.fasterxml.jackson.core</groupId>
104+
<artifactId>jackson-databind</artifactId>
105+
<version>2.18.2</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>org.apache.tomcat.embed</groupId>
109+
<artifactId>tomcat-embed-core</artifactId>
110+
<version>11.0.2</version>
111+
</dependency>
112+
<dependency>
113+
<groupId>org.apache.tomcat.embed</groupId>
114+
<artifactId>tomcat-embed-websocket</artifactId>
115+
<version>11.0.2</version>
116+
</dependency>
117+
<dependency>
118+
<groupId>org.springframework</groupId>
119+
<artifactId>spring-web</artifactId>
120+
<version>6.2.1</version>
121+
</dependency>
122+
<dependency>
123+
<groupId>org.springframework</groupId>
124+
<artifactId>spring-webmvc</artifactId>
125+
<version>6.2.1</version>
126+
</dependency>
127+
<dependency>
128+
<groupId>org.hibernate.validator</groupId>
129+
<artifactId>hibernate-validator</artifactId>
130+
<version>8.0.2.Final</version>
131+
</dependency>
132+
<dependency>
133+
<groupId>com.h2database</groupId>
134+
<artifactId>h2</artifactId>
135+
<version>2.3.232</version>
136+
<scope>test</scope>
137+
</dependency>
138+
<dependency>
139+
<groupId>com.jayway.jsonpath</groupId>
140+
<artifactId>json-path</artifactId>
141+
<version>2.9.0</version>
142+
</dependency>
143+
<dependency>
144+
<groupId>net.minidev</groupId>
145+
<artifactId>json-smart</artifactId>
146+
<version>2.4.11</version>
147+
</dependency>
148+
<dependency>
149+
<groupId>org.xmlunit</groupId>
150+
<artifactId>xmlunit-core</artifactId>
151+
<version>2.10.0</version>
152+
<scope>test</scope>
153+
</dependency>
154+
<dependency>
155+
<groupId>io.projectreactor.netty</groupId>
156+
<artifactId>reactor-netty-http</artifactId>
157+
<version>1.2.2</version>
158+
</dependency>
159+
<dependency>
160+
<groupId>org.springframework</groupId>
161+
<artifactId>spring-webflux</artifactId>
162+
<version>6.2.1</version>
163+
</dependency>
164+
<dependency>
165+
<groupId>io.netty</groupId>
166+
<artifactId>netty-codec-http2</artifactId>
167+
<version>4.1.117.Final</version>
168+
</dependency>
169+
<dependency>
170+
<groupId>io.netty</groupId>
171+
<artifactId>netty-codec-http</artifactId>
172+
<version>4.1.117.Final</version>
173+
</dependency>
174+
<dependency>
175+
<groupId>io.netty</groupId>
176+
<artifactId>netty-common</artifactId>
177+
<version>4.1.117.Final</version>
178+
</dependency>
179+
<dependency>
180+
<groupId>io.netty</groupId>
181+
<artifactId>netty-handler</artifactId>
182+
<version>4.1.117.Final</version>
183+
</dependency>
184+
<dependency>
185+
<groupId>io.projectreactor.netty</groupId>
186+
<artifactId>reactor-netty-core</artifactId>
187+
<version>1.2.2</version>
188+
</dependency>
189+
<dependency>
190+
<groupId>org.springframework.boot</groupId>
191+
<artifactId>spring-boot-actuator</artifactId>
192+
<version>3.4.1</version>
193+
</dependency>
194+
<dependency>
195+
<groupId>org.springframework.boot</groupId>
196+
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
197+
<version>3.4.1</version>
198+
</dependency>
199+
<dependency>
200+
<groupId>org.springframework.security</groupId>
201+
<artifactId>spring-security-config</artifactId>
202+
<version>6.4.2</version>
203+
</dependency>
204+
<dependency>
205+
<groupId>org.springframework.security</groupId>
206+
<artifactId>spring-security-core</artifactId>
207+
<version>6.4.2</version>
208+
</dependency>
209+
<dependency>
210+
<groupId>org.springframework.security</groupId>
211+
<artifactId>spring-security-web</artifactId>
212+
<version>6.4.2</version>
213+
</dependency>
214+
<dependency>
215+
<groupId>com.google.guava</groupId>
216+
<artifactId>guava</artifactId>
217+
<version>33.4.0-jre</version>
218+
</dependency>
52219
<dependency>
53220
<groupId>com.thoughtworks.xstream</groupId>
54221
<artifactId>xstream</artifactId>

spring-boot-with-admin/notification/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,21 @@
6666
<type>pom</type>
6767
<scope>import</scope>
6868
</dependency>
69+
<dependency>
70+
<groupId>com.thoughtworks.xstream</groupId>
71+
<artifactId>xstream</artifactId>
72+
<version>1.4.21</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>net.minidev</groupId>
76+
<artifactId>json-smart</artifactId>
77+
<version>2.4.11</version>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.apache.httpcomponents</groupId>
81+
<artifactId>httpclient</artifactId>
82+
<version>4.5.14</version>
83+
</dependency>
6984
</dependencies>
7085
</dependencyManagement>
7186
<dependencies>

spring-boot-with-admin/registry/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@
7272
<artifactId>logback-core</artifactId>
7373
<version>1.5.16</version>
7474
</dependency>
75+
<dependency>
76+
<groupId>net.minidev</groupId>
77+
<artifactId>json-smart</artifactId>
78+
<version>2.4.11</version>
79+
</dependency>
7580
</dependencies>
7681
</dependencyManagement>
7782
<dependencies>

spring-boot/todo/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@
7373
<artifactId>classgraph</artifactId>
7474
<version>4.8.179</version>
7575
</dependency>
76+
<dependency>
77+
<groupId>net.minidev</groupId>
78+
<artifactId>json-smart</artifactId>
79+
<version>2.4.11</version>
80+
</dependency>
81+
<dependency>
82+
<groupId>ch.qos.logback</groupId>
83+
<artifactId>logback-core</artifactId>
84+
<version>1.5.16</version>
85+
</dependency>
7686
</dependencies>
7787
</dependencyManagement>
7888

0 commit comments

Comments
 (0)