Skip to content

Commit

Permalink
fix(quarkus,e2e): fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tadayosi committed Dec 20, 2023
1 parent f35834d commit c7e86ac
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", "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"));
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", "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"));
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", "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"));
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 @@ -3,7 +3,7 @@
<parent>
<artifactId>hawtio-tests</artifactId>
<groupId>io.hawt.tests</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.1-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 @@ -6,7 +6,7 @@
<parent>
<groupId>io.hawt</groupId>
<artifactId>project</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.1-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 @@ -3,7 +3,7 @@
<parent>
<artifactId>hawtio-tests</artifactId>
<groupId>io.hawt.tests</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion tests/springboot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/springboot/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>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit c7e86ac

Please sign in to comment.