Skip to content

Commit

Permalink
Update to Wildfly 33.0.1.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
kifj committed Sep 8, 2024
1 parent 795ffa3 commit 8b31da0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<wildfly.version>33.0.0.Final</wildfly.version>
<wildfly.version>33.0.1.Final</wildfly.version>
<jboss.home>/opt/wildfly-${wildfly.version}</jboss.home>
<shrinkwrap-resolver.version>3.3.1</shrinkwrap-resolver.version>
<jacoco.version>0.8.12</jacoco.version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/docker/integration-tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -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="[email protected]"

COPY --chown=jboss:jboss scripts /srv/wildfly/scripts
Expand Down
4 changes: 2 additions & 2 deletions src/main/docker/stomp-test/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/main/docker/x1-wildfly-stomp-test/Dockerfile
Original file line number Diff line number Diff line change
@@ -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="[email protected]"

COPY --chown=jboss:jboss scripts /srv/wildfly/scripts
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/x1/arquillian/Containers.java
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit 8b31da0

Please sign in to comment.