From c7e86acbf3876d30b9dc6fd3c808e443a9f86261 Mon Sep 17 00:00:00 2001 From: Tadayoshi Sato Date: Wed, 20 Dec 2023 13:49:21 +0900 Subject: [PATCH] fix(quarkus,e2e): fix tests --- .../test/HawtioQuarkusAuthenticationDisabledTest.java | 2 +- .../deployment/test/HawtioQuarkusAuthenticationEnabledTest.java | 2 +- .../deployment/test/HawtioQuarkusPluginConfigurationTest.java | 2 +- tests/hawtio-test-suite/pom.xml | 2 +- tests/pom.xml | 2 +- tests/quarkus/pom.xml | 2 +- tests/springboot/Dockerfile | 2 +- tests/springboot/pom.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationDisabledTest.java b/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationDisabledTest.java index 7992a7f70c..bcc6277b2c 100644 --- a/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationDisabledTest.java +++ b/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationDisabledTest.java @@ -23,7 +23,7 @@ public class HawtioQuarkusAuthenticationDisabledTest { @RegisterExtension static final QuarkusUnitTest CONFIG = new QuarkusUnitTest() - .setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "3.0-SNAPSHOT"))) + .setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "3.1-SNAPSHOT"))) .setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class) .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml") .addAsResource(applicationProperties(), "application.properties")); diff --git a/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationEnabledTest.java b/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationEnabledTest.java index 8be38360cf..de4dfc94de 100644 --- a/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationEnabledTest.java +++ b/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusAuthenticationEnabledTest.java @@ -23,7 +23,7 @@ public class HawtioQuarkusAuthenticationEnabledTest { @RegisterExtension static final QuarkusUnitTest CONFIG = new QuarkusUnitTest() - .setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "3.0-SNAPSHOT"))) + .setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "3.1-SNAPSHOT"))) .setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class) .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml") .addAsResource(applicationProperties(), "application.properties")); diff --git a/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusPluginConfigurationTest.java b/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusPluginConfigurationTest.java index 8a22857170..84281aa6e1 100644 --- a/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusPluginConfigurationTest.java +++ b/platforms/quarkus/deployment/src/test/java/io/hawt/quarkus/deployment/test/HawtioQuarkusPluginConfigurationTest.java @@ -23,7 +23,7 @@ public class HawtioQuarkusPluginConfigurationTest { @RegisterExtension static final QuarkusUnitTest CONFIG = new QuarkusUnitTest() - .setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "3.0-SNAPSHOT"))) + .setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "3.1-SNAPSHOT"))) .setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class) .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml") .addAsResource(applicationProperties(), "application.properties")); diff --git a/tests/hawtio-test-suite/pom.xml b/tests/hawtio-test-suite/pom.xml index f62938599a..4221082d55 100644 --- a/tests/hawtio-test-suite/pom.xml +++ b/tests/hawtio-test-suite/pom.xml @@ -3,7 +3,7 @@ hawtio-tests io.hawt.tests - 3.0-SNAPSHOT + 3.1-SNAPSHOT 4.0.0 diff --git a/tests/pom.xml b/tests/pom.xml index b038bba40a..2dcdeeadf0 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -6,7 +6,7 @@ io.hawt project - 3.0-SNAPSHOT + 3.1-SNAPSHOT io.hawt.tests diff --git a/tests/quarkus/pom.xml b/tests/quarkus/pom.xml index 2bee0f0a84..d1e5f66bc0 100644 --- a/tests/quarkus/pom.xml +++ b/tests/quarkus/pom.xml @@ -3,7 +3,7 @@ hawtio-tests io.hawt.tests - 3.0-SNAPSHOT + 3.1-SNAPSHOT 4.0.0 diff --git a/tests/springboot/Dockerfile b/tests/springboot/Dockerfile index 6177aaea53..65ab129c1d 100644 --- a/tests/springboot/Dockerfile +++ b/tests/springboot/Dockerfile @@ -3,7 +3,7 @@ FROM eclipse-temurin:${JAVA_VERSION} ENV LANGUAGE='en_US:en' -COPY --chown=185 target/hawtio-tests-springboot-3.0-SNAPSHOT.jar /deployments/hawtio-springboot.jar +COPY --chown=185 target/hawtio-tests-springboot-3.1-SNAPSHOT.jar /deployments/hawtio-springboot.jar EXPOSE 8080 10001 10000 USER 185 diff --git a/tests/springboot/pom.xml b/tests/springboot/pom.xml index 51dfa5d7bd..b1a5b3351e 100644 --- a/tests/springboot/pom.xml +++ b/tests/springboot/pom.xml @@ -4,7 +4,7 @@ hawtio-tests io.hawt.tests - 3.0-SNAPSHOT + 3.1-SNAPSHOT 4.0.0