From 8b31da05b001063ad977e2cc894e886e06cfe78d Mon Sep 17 00:00:00 2001 From: Johannes Beck Date: Sun, 8 Sep 2024 09:29:12 +0200 Subject: [PATCH] Update to Wildfly 33.0.1.Final --- pom.xml | 2 +- src/main/docker/integration-tests/Dockerfile | 2 +- src/main/docker/stomp-test/docker-compose.yml | 4 ++-- src/main/docker/x1-wildfly-stomp-test/Dockerfile | 2 +- src/test/java/x1/arquillian/Containers.java | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index b13b9ff4..0d466772 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ UTF-8 21 21 - 33.0.0.Final + 33.0.1.Final /opt/wildfly-${wildfly.version} 3.3.1 0.8.12 diff --git a/src/main/docker/integration-tests/Dockerfile b/src/main/docker/integration-tests/Dockerfile index 6f30fa31..97f7e076 100644 --- a/src/main/docker/integration-tests/Dockerfile +++ b/src/main/docker/integration-tests/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.x1/j7beck/x1-wildfly-profile:33.0.0.Final +FROM registry.x1/j7beck/x1-wildfly-profile:33.0.1.Final LABEL maintainer="joe@mail.x1" COPY --chown=jboss:jboss scripts /srv/wildfly/scripts diff --git a/src/main/docker/stomp-test/docker-compose.yml b/src/main/docker/stomp-test/docker-compose.yml index 9feb05f1..3247a3ee 100644 --- a/src/main/docker/stomp-test/docker-compose.yml +++ b/src/main/docker/stomp-test/docker-compose.yml @@ -1,6 +1,6 @@ services: etcd: - image: quay.io/coreos/etcd:v3.5.14 + image: quay.io/coreos/etcd:v3.5.15 container_name: etcd command: ["etcd", "--listen-client-urls", "http://0.0.0.0:2379", "--advertise-client-urls", "http://etcd:2379"] environment: @@ -44,7 +44,7 @@ services: - "8080:8080" - "8443:8443" otel-collector: - image: otel/opentelemetry-collector-contrib:0.102.0 + image: otel/opentelemetry-collector-contrib:0.108.0 restart: always command: ["--config=/etc/otel-collector-config.yaml"] volumes: diff --git a/src/main/docker/x1-wildfly-stomp-test/Dockerfile b/src/main/docker/x1-wildfly-stomp-test/Dockerfile index 5f4f4ade..cfd6ec5e 100644 --- a/src/main/docker/x1-wildfly-stomp-test/Dockerfile +++ b/src/main/docker/x1-wildfly-stomp-test/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.x1/j7beck/x1-wildfly-profile:33.0.0.Final +FROM registry.x1/j7beck/x1-wildfly-profile:33.0.1.Final LABEL maintainer="joe@mail.x1" COPY --chown=jboss:jboss scripts /srv/wildfly/scripts diff --git a/src/test/java/x1/arquillian/Containers.java b/src/test/java/x1/arquillian/Containers.java index 2564a0e9..9e4f7f3c 100644 --- a/src/test/java/x1/arquillian/Containers.java +++ b/src/test/java/x1/arquillian/Containers.java @@ -22,7 +22,7 @@ public final class Containers implements ArquillianTestContainers { .withLogConsumer(new Slf4jLogConsumer(LoggerFactory.getLogger(Containers.class)).withSeparateOutputStreams()); @SuppressWarnings("resource") - private final GenericContainer etcd = new GenericContainer<>(DockerImageName.parse("quay.io/coreos/etcd:v3.5.14")) + private final GenericContainer etcd = new GenericContainer<>(DockerImageName.parse("quay.io/coreos/etcd:v3.5.15")) .withEnv("ETCD_ENABLE_V2", "true").withNetwork(network).withNetworkAliases("etcd").withCommand("etcd", "--listen-client-urls", "http://0.0.0.0:2379", "--advertise-client-urls", "http://etcd:2379");