Upgrade dependencies, prepare for release
* Remove `bamboo_vault.github.password` from `LocalstackContainerTest` since we don't build on Bamboo anymore
This commit is contained in:
10
build.gradle
10
build.gradle
@@ -8,7 +8,7 @@ plugins {
|
||||
id 'idea'
|
||||
id 'checkstyle'
|
||||
id 'org.ajoberstar.grgit' version '4.1.1'
|
||||
id 'io.spring.dependency-management' version '1.1.3'
|
||||
id 'io.spring.dependency-management' version '1.1.4'
|
||||
}
|
||||
|
||||
description = 'Spring Integration AWS Support'
|
||||
@@ -30,12 +30,12 @@ ext {
|
||||
awaitilityVersion = '4.2.0'
|
||||
awsSdkVersion = '2.20.162'
|
||||
jacksonVersion = '2.15.3'
|
||||
junitVersion = '5.10.0'
|
||||
log4jVersion = '2.20.0'
|
||||
junitVersion = '5.10.1'
|
||||
log4jVersion = '2.21.1'
|
||||
servletApiVersion = '6.0.0'
|
||||
springCloudAwsVersion = '3.0.2'
|
||||
springCloudAwsVersion = '3.0.3'
|
||||
springIntegrationVersion = '6.0.8'
|
||||
kinesisClientVersion = '2.5.2'
|
||||
kinesisClientVersion = '2.5.3'
|
||||
kinesisProducerVersion = '0.15.8'
|
||||
testcontainersVersion = '1.19.1'
|
||||
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
|
||||
package org.springframework.integration.aws;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.Optional;
|
||||
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.testcontainers.containers.localstack.LocalStackContainer;
|
||||
import org.testcontainers.junit.jupiter.Testcontainers;
|
||||
@@ -51,10 +48,7 @@ import software.amazon.awssdk.services.sqs.SqsAsyncClient;
|
||||
public interface LocalstackContainerTest {
|
||||
|
||||
LocalStackContainer LOCAL_STACK_CONTAINER =
|
||||
new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.2.0"))
|
||||
.withEnv(Optional.ofNullable(System.getenv("bamboo_vault.github.password"))
|
||||
.map(value -> Map.of("GITHUB_API_TOKEN", value))
|
||||
.orElse(Map.of()));
|
||||
new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.3.2"));
|
||||
|
||||
@BeforeAll
|
||||
static void startContainer() {
|
||||
|
||||
Reference in New Issue
Block a user