Skip to content

Commit

Permalink
fix(e2e): update tests to 4.3-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
tadayosi committed Oct 4, 2024
1 parent 613b59e commit 10ceeef
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class HawtioQuarkusAuthenticationDisabledTest {

@RegisterExtension
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest()
.setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "4.2-SNAPSHOT")))
.setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "4.3-SNAPSHOT")))
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")
.addAsResource(applicationProperties(), "application.properties"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class HawtioQuarkusAuthenticationEnabledTest {

@RegisterExtension
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest()
.setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "4.2-SNAPSHOT")))
.setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "4.3-SNAPSHOT")))
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")
.addAsResource(applicationProperties(), "application.properties"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class HawtioQuarkusPluginConfigurationTest {

@RegisterExtension
static final QuarkusUnitTest CONFIG = new QuarkusUnitTest()
.setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "4.2-SNAPSHOT")))
.setForcedDependencies(List.of(new AppArtifact("io.hawt", "hawtio-quarkus-deployment", "4.3-SNAPSHOT")))
.setArchiveProducer(() -> ShrinkWrap.create(JavaArchive.class)
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")
.addAsResource(applicationProperties(), "application.properties"));
Expand Down
2 changes: 1 addition & 1 deletion tests/hawtio-test-suite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>hawtio-tests</artifactId>
<groupId>io.hawt.tests</groupId>
<version>4.2-SNAPSHOT</version>
<version>4.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.hawt</groupId>
<artifactId>project</artifactId>
<version>4.2-SNAPSHOT</version>
<version>4.3-SNAPSHOT</version>
</parent>

<groupId>io.hawt.tests</groupId>
Expand Down
2 changes: 1 addition & 1 deletion tests/quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hawtio-tests</artifactId>
<groupId>io.hawt.tests</groupId>
<version>4.2-SNAPSHOT</version>
<version>4.3-SNAPSHOT</version>
</parent>

<artifactId>hawtio-tests-quarkus</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tests/springboot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM ${IMAGE}:${JAVA_VERSION}

ENV LANGUAGE='en_US:en'

COPY --chown=185 target/hawtio-tests-springboot-4.2-SNAPSHOT.jar /deployments/hawtio-springboot.jar
COPY --chown=185 target/hawtio-tests-springboot-4.3-SNAPSHOT.jar /deployments/hawtio-springboot.jar

EXPOSE 8080 10001 10000
USER 185
Expand Down
2 changes: 1 addition & 1 deletion tests/springboot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>hawtio-tests</artifactId>
<groupId>io.hawt.tests</groupId>
<version>4.2-SNAPSHOT</version>
<version>4.3-SNAPSHOT</version>
</parent>

<artifactId>hawtio-tests-springboot</artifactId>
Expand Down

0 comments on commit 10ceeef

Please sign in to comment.