Skip to content

Commit 42e37cd

Browse files
committed
Upgrade versions; prepare for 2.4.0-M2
1 parent 7e3f7bf commit 42e37cd

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

build.gradle

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,27 +44,26 @@ ext {
4444
awaitilityVersion = '4.1.0'
4545
commonsCompressVersion = '1.20'
4646
commonsHttpClientVersion = '4.5.13'
47-
commonsPoolVersion = '2.10.0'
47+
commonsPoolVersion = '2.11.1'
4848
googleJsr305Version = '3.0.2'
4949
hamcrestVersion = '2.2'
5050
hibernateValidationVersion = '6.2.0.Final'
51-
jacksonBomVersion = '2.12.4'
51+
jacksonBomVersion = '2.12.5'
5252
jaywayJsonPathVersion = '2.4.0'
5353
junit4Version = '4.13.2'
5454
junitJupiterVersion = '5.7.2'
5555
log4jVersion = '2.14.1'
5656
logbackVersion = '1.2.3'
5757
lz4Version = '1.8.0'
58-
micrometerVersion = '1.8.0-M2'
58+
micrometerVersion = '1.8.0-M3'
5959
mockitoVersion = '3.11.2'
60-
protonJVersion = '0.33.8'
61-
rabbitmqStreamVersion = '0.3.0'
62-
rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '5.13.0'
63-
rabbitmqHttpClientVersion = '3.11.0'
60+
rabbitmqStreamVersion = '0.4.0'
61+
rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '5.13.1'
62+
rabbitmqHttpClientVersion = '3.12.1'
6463
reactorVersion = '2020.0.11'
6564
snappyVersion = '1.1.8.4'
66-
springDataCommonsVersion = '2.6.0-M2'
67-
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.3.9'
65+
springDataCommonsVersion = '2.6.0-M3'
66+
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.3.10'
6867
springRetryVersion = '1.3.1'
6968
zstdJniVersion = '1.5.0-2'
7069
}
@@ -407,7 +406,6 @@ project('spring-rabbit-stream') {
407406
testRuntimeOnly 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml'
408407
testRuntimeOnly 'com.fasterxml.jackson.module:jackson-module-kotlin'
409408
testRuntimeOnly "org.apache.httpcomponents:httpclient:$commonsHttpClientVersion"
410-
testRuntimeOnly "org.apache.qpid:proton-j:$protonJVersion"
411409
testRuntimeOnly "org.apache.commons:commons-compress:$commonsCompressVersion"
412410
testRuntimeOnly "org.xerial.snappy:snappy-java:$snappyVersion"
413411
testRuntimeOnly "org.lz4:lz4-java:$lz4Version"

spring-rabbit-stream/src/test/java/org/springframework/rabbit/stream/listener/AbstractIntegrationTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ public abstract class AbstractIntegrationTests {
3131
static final GenericContainer<?> RABBITMQ;
3232

3333
static {
34-
if (System.getProperty("spring.rabbit.use.local.server") == null) {
34+
if (System.getProperty("spring.rabbit.use.local.server") == null
35+
&& System.getenv("SPRING_RABBIT_USE_LOCAL_SERVER") == null) {
3536
String image = "pivotalrabbitmq/rabbitmq-stream";
3637
String cache = System.getenv().get("IMAGE_CACHE");
3738
if (cache != null) {

0 commit comments

Comments
 (0)