Skip to content

Commit

Permalink
Upgrade quarkus to 3.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RishiRajAnand committed Nov 25, 2024
1 parent 7f7c9ae commit 155a03e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions kogito-build/kogito-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<properties>
<!-- this version property is used in plugins but also in dependencies too -->
<version.io.quarkus>3.15.1</version.io.quarkus>
<version.io.quarkus>3.15.2</version.io.quarkus>
<version.io.quarkus.quarkus-test>${version.io.quarkus}</version.io.quarkus.quarkus-test>
<version.org.springframework.boot>3.2.6</version.org.springframework.boot>
<version.org.apache.kafka>3.7.0</version.org.apache.kafka>
Expand Down Expand Up @@ -90,7 +90,7 @@

<version.io.smallrye.reactive.mutiny-vertx-web-client>3.11.0</version.io.smallrye.reactive.mutiny-vertx-web-client>

<version.io.vertx>4.5.7</version.io.vertx>
<version.io.vertx>4.5.10</version.io.vertx>
<version.io.grpc>1.59.1</version.io.grpc>

<version.io.quarkus.camel>3.9.0</version.io.quarkus.camel> <!-- TODO: quarkus version mismatch -->
Expand All @@ -111,7 +111,7 @@
<version.jakarta.persistence-api>3.1.0</version.jakarta.persistence-api>

<version.org.jboss.resteasy>6.2.7.Final</version.org.jboss.resteasy>
<version.org.keycloak>24.0.4</version.org.keycloak>
<version.org.keycloak>25.0.6</version.org.keycloak>
<!-- It seems that the confluent kafka cannot replace wurstmeister/kafka so easily. See FAI-729 -->
<version.wurstmeister.kafka>2.12-2.2.1</version.wurstmeister.kafka>
<version.org.mongo>5.1.4</version.org.mongo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import io.quarkus.maven.it.RunAndCheckMojoTestBase;
import io.quarkus.maven.it.verifier.MavenProcessInvoker;
import io.quarkus.maven.it.verifier.RunningInvoker;
import io.quarkus.test.devmode.util.DevModeTestUtils;
import io.quarkus.test.devmode.util.DevModeClient;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;

Expand Down Expand Up @@ -89,11 +89,12 @@ public class DevMojoIT extends RunAndCheckMojoTestBase {

private String getRestResponse(String port) {
AtomicReference<String> resp = new AtomicReference<>();
DevModeClient devModeClient = new DevModeClient(Integer.parseInt(port));
// retry on exceptions for connection refused, connection errors, etc. which will occur until the Kogito Quarkus maven project is fully built and running
await().pollDelay(INIT_POLL_DELAY, INIT_POLL_DELAY_UNIT)
.atMost(INIT_POLL_TIMEOUT, INIT_POLL_TIMEOUT_UNIT).until(() -> {
try {
String content = DevModeTestUtils.get("http://localhost:" + port + "/control");
String content = devModeClient.get("http://localhost:" + port + "/control");
resp.set(content);
return true;
} catch (Exception e) {
Expand Down

0 comments on commit 155a03e

Please sign in to comment.