Skip to content

Commit 61e95e3

Browse files
committed
Upgrade to Log4J-2.25.3
1 parent 340fd2d commit 61e95e3

File tree

68 files changed

+3862
-338
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3862
-338
lines changed

advanced/advanced-testing-examples/pom.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@
4141
<role>project founder and lead emeritus</role>
4242
</roles>
4343
</developer>
44+
<developer>
45+
<id>cppwfs</id>
46+
<name>Glenn Renfro</name>
47+
<email>glenn.renfro@broadcom.com</email>
48+
<roles>
49+
<role>project committer</role>
50+
</roles>
51+
</developer>
4452
</developers>
4553
<scm>
4654
<connection>scm:git:scm:git:git://github.com/spring-projects/spring-integration-samples.git</connection>
@@ -71,7 +79,7 @@
7179
<dependency>
7280
<groupId>org.apache.logging.log4j</groupId>
7381
<artifactId>log4j-core</artifactId>
74-
<version>2.24.3</version>
82+
<version>2.25.3</version>
7583
<scope>compile</scope>
7684
</dependency>
7785
<dependency>
@@ -112,21 +120,21 @@
112120
<dependency>
113121
<groupId>org.junit</groupId>
114122
<artifactId>junit-bom</artifactId>
115-
<version>5.12.2</version>
123+
<version>6.0.0</version>
116124
<scope>import</scope>
117125
<type>pom</type>
118126
</dependency>
119127
<dependency>
120128
<groupId>tools.jackson</groupId>
121129
<artifactId>jackson-bom</artifactId>
122-
<version>3.0.0-rc5</version>
130+
<version>3.0.0-rc9</version>
123131
<scope>import</scope>
124132
<type>pom</type>
125133
</dependency>
126134
<dependency>
127135
<groupId>com.fasterxml.jackson</groupId>
128136
<artifactId>jackson-bom</artifactId>
129-
<version>2.19.1</version>
137+
<version>2.20.0</version>
130138
<scope>import</scope>
131139
<type>pom</type>
132140
</dependency>

advanced/dynamic-ftp/pom.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@
4141
<role>project founder and lead emeritus</role>
4242
</roles>
4343
</developer>
44+
<developer>
45+
<id>cppwfs</id>
46+
<name>Glenn Renfro</name>
47+
<email>glenn.renfro@broadcom.com</email>
48+
<roles>
49+
<role>project committer</role>
50+
</roles>
51+
</developer>
4452
</developers>
4553
<scm>
4654
<connection>scm:git:scm:git:git://github.com/spring-projects/spring-integration-samples.git</connection>
@@ -60,7 +68,7 @@
6068
<dependency>
6169
<groupId>org.apache.logging.log4j</groupId>
6270
<artifactId>log4j-core</artifactId>
63-
<version>2.24.3</version>
71+
<version>2.25.3</version>
6472
<scope>compile</scope>
6573
</dependency>
6674
<dependency>
@@ -101,21 +109,21 @@
101109
<dependency>
102110
<groupId>org.junit</groupId>
103111
<artifactId>junit-bom</artifactId>
104-
<version>5.12.2</version>
112+
<version>6.0.0</version>
105113
<scope>import</scope>
106114
<type>pom</type>
107115
</dependency>
108116
<dependency>
109117
<groupId>tools.jackson</groupId>
110118
<artifactId>jackson-bom</artifactId>
111-
<version>3.0.0-rc5</version>
119+
<version>3.0.0-rc9</version>
112120
<scope>import</scope>
113121
<type>pom</type>
114122
</dependency>
115123
<dependency>
116124
<groupId>com.fasterxml.jackson</groupId>
117125
<artifactId>jackson-bom</artifactId>
118-
<version>2.19.1</version>
126+
<version>2.20.0</version>
119127
<scope>import</scope>
120128
<type>pom</type>
121129
</dependency>

advanced/dynamic-tcp-client/pom.xml

Lines changed: 216 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@
4242
<role>project founder and lead emeritus</role>
4343
</roles>
4444
</developer>
45+
<developer>
46+
<id>cppwfs</id>
47+
<name>Glenn Renfro</name>
48+
<email>glenn.renfro@broadcom.com</email>
49+
<roles>
50+
<role>project committer</role>
51+
</roles>
52+
</developer>
4553
</developers>
4654
<scm>
4755
<connection>scm:git:scm:git:git://github.com/spring-projects/spring-integration-samples.git</connection>
@@ -103,6 +111,211 @@
103111
</dependencies>
104112
<dependencyManagement>
105113
<dependencies>
114+
<dependency>
115+
<groupId>org.springframework.integration</groupId>
116+
<artifactId>spring-integration-jdbc</artifactId>
117+
<version>7.0.0-SNAPSHOT</version>
118+
</dependency>
119+
<dependency>
120+
<groupId>org.springframework.integration</groupId>
121+
<artifactId>spring-integration-ws</artifactId>
122+
<version>7.0.0-SNAPSHOT</version>
123+
</dependency>
124+
<dependency>
125+
<groupId>org.springframework.integration</groupId>
126+
<artifactId>spring-integration-redis</artifactId>
127+
<version>7.0.0-SNAPSHOT</version>
128+
</dependency>
129+
<dependency>
130+
<groupId>org.springframework.integration</groupId>
131+
<artifactId>spring-integration-r2dbc</artifactId>
132+
<version>7.0.0-SNAPSHOT</version>
133+
</dependency>
134+
<dependency>
135+
<groupId>org.springframework.integration</groupId>
136+
<artifactId>spring-integration-rsocket</artifactId>
137+
<version>7.0.0-SNAPSHOT</version>
138+
</dependency>
139+
<dependency>
140+
<groupId>org.springframework.integration</groupId>
141+
<artifactId>spring-integration-event</artifactId>
142+
<version>7.0.0-SNAPSHOT</version>
143+
</dependency>
144+
<dependency>
145+
<groupId>org.springframework.integration</groupId>
146+
<artifactId>spring-integration-cassandra</artifactId>
147+
<version>7.0.0-SNAPSHOT</version>
148+
</dependency>
149+
<dependency>
150+
<groupId>org.springframework.integration</groupId>
151+
<artifactId>spring-integration-scripting</artifactId>
152+
<version>7.0.0-SNAPSHOT</version>
153+
</dependency>
154+
<dependency>
155+
<groupId>org.springframework.integration</groupId>
156+
<artifactId>spring-integration-websocket</artifactId>
157+
<version>7.0.0-SNAPSHOT</version>
158+
</dependency>
159+
<dependency>
160+
<groupId>org.springframework.integration</groupId>
161+
<artifactId>spring-integration-graphql</artifactId>
162+
<version>7.0.0-SNAPSHOT</version>
163+
</dependency>
164+
<dependency>
165+
<groupId>org.springframework.integration</groupId>
166+
<artifactId>spring-integration-jpa</artifactId>
167+
<version>7.0.0-SNAPSHOT</version>
168+
</dependency>
169+
<dependency>
170+
<groupId>org.springframework.integration</groupId>
171+
<artifactId>spring-integration-test</artifactId>
172+
<version>7.0.0-SNAPSHOT</version>
173+
</dependency>
174+
<dependency>
175+
<groupId>org.springframework.integration</groupId>
176+
<artifactId>spring-integration-http</artifactId>
177+
<version>7.0.0-SNAPSHOT</version>
178+
</dependency>
179+
<dependency>
180+
<groupId>org.springframework.integration</groupId>
181+
<artifactId>spring-integration-zookeeper</artifactId>
182+
<version>7.0.0-SNAPSHOT</version>
183+
</dependency>
184+
<dependency>
185+
<groupId>org.springframework.integration</groupId>
186+
<artifactId>spring-integration-ip</artifactId>
187+
<version>7.0.0-SNAPSHOT</version>
188+
</dependency>
189+
<dependency>
190+
<groupId>org.springframework.integration</groupId>
191+
<artifactId>spring-integration-mail</artifactId>
192+
<version>7.0.0-SNAPSHOT</version>
193+
</dependency>
194+
<dependency>
195+
<groupId>org.springframework.integration</groupId>
196+
<artifactId>spring-integration-camel</artifactId>
197+
<version>7.0.0-SNAPSHOT</version>
198+
</dependency>
199+
<dependency>
200+
<groupId>org.springframework.integration</groupId>
201+
<artifactId>spring-integration-mongodb</artifactId>
202+
<version>7.0.0-SNAPSHOT</version>
203+
</dependency>
204+
<dependency>
205+
<groupId>org.springframework.integration</groupId>
206+
<artifactId>spring-integration-stream</artifactId>
207+
<version>7.0.0-SNAPSHOT</version>
208+
</dependency>
209+
<dependency>
210+
<groupId>org.springframework.integration</groupId>
211+
<artifactId>spring-integration-stomp</artifactId>
212+
<version>7.0.0-SNAPSHOT</version>
213+
</dependency>
214+
<dependency>
215+
<groupId>org.springframework.integration</groupId>
216+
<artifactId>spring-integration-file</artifactId>
217+
<version>7.0.0-SNAPSHOT</version>
218+
</dependency>
219+
<dependency>
220+
<groupId>org.springframework.integration</groupId>
221+
<artifactId>spring-integration-syslog</artifactId>
222+
<version>7.0.0-SNAPSHOT</version>
223+
</dependency>
224+
<dependency>
225+
<groupId>org.springframework.integration</groupId>
226+
<artifactId>spring-integration-smb</artifactId>
227+
<version>7.0.0-SNAPSHOT</version>
228+
</dependency>
229+
<dependency>
230+
<groupId>org.springframework.integration</groupId>
231+
<artifactId>spring-integration-jmx</artifactId>
232+
<version>7.0.0-SNAPSHOT</version>
233+
</dependency>
234+
<dependency>
235+
<groupId>org.springframework.integration</groupId>
236+
<artifactId>spring-integration-webflux</artifactId>
237+
<version>7.0.0-SNAPSHOT</version>
238+
</dependency>
239+
<dependency>
240+
<groupId>org.springframework.integration</groupId>
241+
<artifactId>spring-integration-sftp</artifactId>
242+
<version>7.0.0-SNAPSHOT</version>
243+
</dependency>
244+
<dependency>
245+
<groupId>org.springframework.integration</groupId>
246+
<artifactId>spring-integration-mqtt</artifactId>
247+
<version>7.0.0-SNAPSHOT</version>
248+
</dependency>
249+
<dependency>
250+
<groupId>org.springframework.integration</groupId>
251+
<artifactId>spring-integration-ftp</artifactId>
252+
<version>7.0.0-SNAPSHOT</version>
253+
</dependency>
254+
<dependency>
255+
<groupId>org.springframework.integration</groupId>
256+
<artifactId>spring-integration-kafka</artifactId>
257+
<version>7.0.0-SNAPSHOT</version>
258+
</dependency>
259+
<dependency>
260+
<groupId>org.springframework.integration</groupId>
261+
<artifactId>spring-integration-groovy</artifactId>
262+
<version>7.0.0-SNAPSHOT</version>
263+
</dependency>
264+
<dependency>
265+
<groupId>org.springframework.integration</groupId>
266+
<artifactId>spring-integration-xmpp</artifactId>
267+
<version>7.0.0-SNAPSHOT</version>
268+
</dependency>
269+
<dependency>
270+
<groupId>org.springframework.integration</groupId>
271+
<artifactId>spring-integration-feed</artifactId>
272+
<version>7.0.0-SNAPSHOT</version>
273+
</dependency>
274+
<dependency>
275+
<groupId>org.springframework.integration</groupId>
276+
<artifactId>spring-integration-debezium</artifactId>
277+
<version>7.0.0-SNAPSHOT</version>
278+
</dependency>
279+
<dependency>
280+
<groupId>org.springframework.integration</groupId>
281+
<artifactId>spring-integration-zeromq</artifactId>
282+
<version>7.0.0-SNAPSHOT</version>
283+
</dependency>
284+
<dependency>
285+
<groupId>org.springframework.integration</groupId>
286+
<artifactId>spring-integration-hazelcast</artifactId>
287+
<version>7.0.0-SNAPSHOT</version>
288+
</dependency>
289+
<dependency>
290+
<groupId>org.springframework.integration</groupId>
291+
<artifactId>spring-integration-test-support</artifactId>
292+
<version>7.0.0-SNAPSHOT</version>
293+
</dependency>
294+
<dependency>
295+
<groupId>org.springframework.integration</groupId>
296+
<artifactId>spring-integration-amqp</artifactId>
297+
<version>7.0.0-SNAPSHOT</version>
298+
</dependency>
299+
<dependency>
300+
<groupId>org.springframework.integration</groupId>
301+
<artifactId>spring-integration-xml</artifactId>
302+
<version>7.0.0-SNAPSHOT</version>
303+
</dependency>
304+
<dependency>
305+
<groupId>org.springframework.integration</groupId>
306+
<artifactId>spring-integration-core</artifactId>
307+
<version>7.0.0-SNAPSHOT</version>
308+
</dependency>
309+
<dependency>
310+
<groupId>org.springframework.integration</groupId>
311+
<artifactId>spring-integration-zip</artifactId>
312+
<version>7.0.0-SNAPSHOT</version>
313+
</dependency>
314+
<dependency>
315+
<groupId>org.springframework.integration</groupId>
316+
<artifactId>spring-integration-jms</artifactId>
317+
<version>7.0.0-SNAPSHOT</version>
318+
</dependency>
106319
<dependency>
107320
<groupId>org.springframework.boot</groupId>
108321
<artifactId>spring-boot-dependencies</artifactId>
@@ -113,21 +326,21 @@
113326
<dependency>
114327
<groupId>org.junit</groupId>
115328
<artifactId>junit-bom</artifactId>
116-
<version>5.12.2</version>
329+
<version>6.0.0</version>
117330
<scope>import</scope>
118331
<type>pom</type>
119332
</dependency>
120333
<dependency>
121334
<groupId>tools.jackson</groupId>
122335
<artifactId>jackson-bom</artifactId>
123-
<version>3.0.0-rc5</version>
336+
<version>3.0.0-rc9</version>
124337
<scope>import</scope>
125338
<type>pom</type>
126339
</dependency>
127340
<dependency>
128341
<groupId>com.fasterxml.jackson</groupId>
129342
<artifactId>jackson-bom</artifactId>
130-
<version>2.19.1</version>
343+
<version>2.20.0</version>
131344
<scope>import</scope>
132345
<type>pom</type>
133346
</dependency>

0 commit comments

Comments
 (0)