Skip to content

Commit

Permalink
Upgrade dependencies, prepare for release
Browse files Browse the repository at this point in the history
* Remove `bamboo_vault.github.password` from `LocalstackContainerTest`
since we don't build on Bamboo anymore
  • Loading branch information
artembilan committed Nov 14, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 33f1061 commit 875823c
Showing 2 changed files with 6 additions and 12 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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'

Original file line number Diff line number Diff line change
@@ -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 @@
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() {

0 comments on commit 875823c

Please sign in to comment.