From 306524e8e0b047ec3d0db23c126a85e6f7f38a2d Mon Sep 17 00:00:00 2001 From: Ralf Ueberfuhr Date: Fri, 30 Aug 2024 07:08:01 +0200 Subject: [PATCH 1/4] Create API consumer --- .github/workflows/ci.yml | 5 + customer-api-consumer/pom.xml | 161 ++++++++++++++++++ .../consumer/CustomerConsumerApplication.java | 13 ++ .../sample/consumer/CustomerService.java | 29 ++++ .../sample/consumer/CustomersResource.java | 39 +++++ .../sample/consumer/client/CustomerApi.java | 22 +++ .../consumer/client/CustomerApiProvider.java | 19 +++ .../sample/consumer/client/CustomerDto.java | 26 +++ .../src/main/resources/application.properties | 10 ++ .../target/build-metrics.json | 1 + .../target/classes/application.properties | 10 ++ .../CustomerConsumerApplication.class | Bin 0 -> 653 bytes .../sample/consumer/CustomerService.class | Bin 0 -> 1101 bytes .../sample/consumer/CustomersResource.class | Bin 0 -> 2520 bytes .../sample/consumer/client/CustomerApi.class | Bin 0 -> 600 bytes .../consumer/client/CustomerApiProvider.class | Bin 0 -> 819 bytes .../sample/consumer/client/CustomerDto.class | Bin 0 -> 1640 bytes .../quarkus/bootstrap/dev-app-model.dat | Bin 0 -> 82338 bytes 18 files changed, 335 insertions(+) create mode 100644 customer-api-consumer/pom.xml create mode 100644 customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerConsumerApplication.java create mode 100644 customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerService.java create mode 100644 customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomersResource.java create mode 100644 customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApi.java create mode 100644 customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApiProvider.java create mode 100644 customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java create mode 100644 customer-api-consumer/src/main/resources/application.properties create mode 100644 customer-api-consumer/target/build-metrics.json create mode 100644 customer-api-consumer/target/classes/application.properties create mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerConsumerApplication.class create mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerService.class create mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomersResource.class create mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApi.class create mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApiProvider.class create mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerDto.class create mode 100644 customer-api-consumer/target/quarkus/bootstrap/dev-app-model.dat diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e896c1..155b53c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,12 +6,14 @@ on: - "main" paths: - "customer-api-provider/**" + - "customer-api-consumer/**" - ".github/**" pull_request: branches: - "main" paths: - "customer-api-provider/**" + - "customer-api-consumer/**" - ".github/**" jobs: @@ -30,3 +32,6 @@ jobs: - name: Build API Provider with Maven working-directory: customer-api-provider run: mvn -B package --file pom.xml + - name: Build API Consumer with Maven + working-directory: customer-api-consumer + run: mvn -B package --file pom.xml diff --git a/customer-api-consumer/pom.xml b/customer-api-consumer/pom.xml new file mode 100644 index 0000000..54f736e --- /dev/null +++ b/customer-api-consumer/pom.xml @@ -0,0 +1,161 @@ + + + 4.0.0 + de.schulung.quarkus + customer-api-consumer + 1.0.0-SNAPSHOT + + + 3.12.1 + 21 + UTF-8 + UTF-8 + quarkus-bom + io.quarkus.platform + 3.13.3 + true + 3.2.5 + 1.18.32 + + + + + + io.quarkus.platform + quarkus-bom + ${quarkus.platform.version} + pom + import + + + + + + + org.projectlombok + lombok + ${lombok.version} + provided + + + io.quarkus + quarkus-arc + + + io.quarkus + quarkus-resteasy-reactive + + + io.quarkus + quarkus-rest-client-reactive-jsonb + + + io.quarkus + quarkus-smallrye-health + + + io.quarkus + quarkus-cache + + + io.quarkus + quarkus-junit5 + test + + + io.quarkus + quarkus-junit5-mockito + test + + + + + + + + maven-compiler-plugin + ${compiler-plugin.version} + + + + org.projectlombok + lombok + ${lombok.version} + + + + + + + + + ${quarkus.platform.group-id} + quarkus-maven-plugin + ${quarkus.platform.version} + true + + + + build + generate-code + generate-code-tests + + + + + + maven-compiler-plugin + + + -parameters + + + + + maven-surefire-plugin + ${surefire-plugin.version} + + + org.jboss.logmanager.LogManager + ${maven.home} + + + + + maven-failsafe-plugin + ${surefire-plugin.version} + + + + integration-test + verify + + + + + + ${project.build.directory}/${project.build.finalName}-runner + org.jboss.logmanager.LogManager + ${maven.home} + + + + + + + + + native + + + native + + + + false + true + + + + diff --git a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerConsumerApplication.java b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerConsumerApplication.java new file mode 100644 index 0000000..edd116b --- /dev/null +++ b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerConsumerApplication.java @@ -0,0 +1,13 @@ +package de.schulung.sample.consumer; + +import io.quarkus.runtime.Quarkus; +import io.quarkus.runtime.annotations.QuarkusMain; + +@QuarkusMain +public class CustomerConsumerApplication { + + public static void main(String[] args) { + Quarkus.run(args); + } + +} diff --git a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerService.java b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerService.java new file mode 100644 index 0000000..cb6db42 --- /dev/null +++ b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomerService.java @@ -0,0 +1,29 @@ +package de.schulung.sample.consumer; + +import de.schulung.sample.consumer.client.CustomerApi; +import de.schulung.sample.consumer.client.CustomerDto; +import io.quarkus.cache.CacheInvalidateAll; +import io.quarkus.cache.CacheResult; +import io.smallrye.mutiny.Uni; +import jakarta.enterprise.context.ApplicationScoped; +import lombok.RequiredArgsConstructor; + +import java.util.Collection; + +@ApplicationScoped +@RequiredArgsConstructor +public class CustomerService { + + private final CustomerApi customerApi; + + // https://quarkus.io/guides/cache + + @CacheResult(cacheName = "customers-api-cache") + public Uni> getAllCustomers() { // quick'n'dirty without mapping! + return customerApi.getAllCustomers(); + } + + @CacheInvalidateAll(cacheName = "customers-api-cache") + public void reset(){} + +} diff --git a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomersResource.java b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomersResource.java new file mode 100644 index 0000000..d22602b --- /dev/null +++ b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/CustomersResource.java @@ -0,0 +1,39 @@ +package de.schulung.sample.consumer; + +import de.schulung.sample.consumer.client.CustomerDto; +import io.smallrye.mutiny.Uni; +import jakarta.ws.rs.GET; +import jakarta.ws.rs.Path; +import jakarta.ws.rs.Produces; +import jakarta.ws.rs.core.MediaType; +import lombok.RequiredArgsConstructor; + +import java.util.stream.Collectors; + +@RequiredArgsConstructor +@Path("/customers") +public class CustomersResource { + + private final CustomerService service; + + @GET + @Produces(MediaType.TEXT_PLAIN) + public Uni getCustomerNames() { + return this.service + .getAllCustomers() + .map(list -> list + .stream() + .map(CustomerDto::getName) + .collect(Collectors.joining("\n")) + ); + } + + @GET + @Produces(MediaType.TEXT_PLAIN) + @Path("/reset") + public String reset() { + this.service.reset(); + return "Done."; + } + +} diff --git a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApi.java b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApi.java new file mode 100644 index 0000000..a4bfda0 --- /dev/null +++ b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApi.java @@ -0,0 +1,22 @@ +package de.schulung.sample.consumer.client; + +import io.smallrye.mutiny.Uni; +import jakarta.ws.rs.GET; +import jakarta.ws.rs.Path; +import jakarta.ws.rs.Produces; +import jakarta.ws.rs.core.MediaType; +import org.eclipse.microprofile.rest.client.inject.RegisterRestClient; + +import java.util.Collection; + +@RegisterRestClient(configKey = "customer-api") +@Path("/customers") +public interface CustomerApi { + + // https://quarkus.io/guides/rest-client + + @GET + @Produces(MediaType.APPLICATION_JSON) + Uni> getAllCustomers(); + +} diff --git a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApiProvider.java b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApiProvider.java new file mode 100644 index 0000000..61b1efe --- /dev/null +++ b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerApiProvider.java @@ -0,0 +1,19 @@ +package de.schulung.sample.consumer.client; + +import jakarta.enterprise.context.ApplicationScoped; +import jakarta.enterprise.inject.Default; +import jakarta.enterprise.inject.Produces; +import lombok.Getter; +import org.eclipse.microprofile.rest.client.inject.RestClient; + +@ApplicationScoped +public class CustomerApiProvider { + + @RestClient + @Getter(onMethod_ = { + @Produces, + @Default + }) + CustomerApi customerApi; + +} diff --git a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java new file mode 100644 index 0000000..99d738b --- /dev/null +++ b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java @@ -0,0 +1,26 @@ +package de.schulung.sample.consumer.client; + +import jakarta.json.bind.annotation.JsonbTransient; +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; + +import java.time.LocalDate; +import java.util.UUID; + +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class CustomerDto { + + // readonly property + @Setter(onMethod_ = @JsonbTransient) + private UUID uuid; + private String name; + //@JsonbProperty("birth_date") + private LocalDate birthDate; + private String state; + +} diff --git a/customer-api-consumer/src/main/resources/application.properties b/customer-api-consumer/src/main/resources/application.properties new file mode 100644 index 0000000..4a64edc --- /dev/null +++ b/customer-api-consumer/src/main/resources/application.properties @@ -0,0 +1,10 @@ +%dev.quarkus.http.port=8081 +%dev.quarkus.rest-client."customer-api".url=http://localhost:8080/api/v1 +quarkus.rest-client."customer-api".connect-timeout=2000 +%dev.quarkus.rest-client."customer-api".read-timeout=2000 +quarkus.cache.caffeine."customers-api-cache".metrics-enabled=true +quarkus.cache.caffeine."customers-api-cache".expire-after-write=60S +quarkus.management.port=9091 +quarkus.management.enabled=true +%dev.quarkus.management.host=localhost + diff --git a/customer-api-consumer/target/build-metrics.json b/customer-api-consumer/target/build-metrics.json new file mode 100644 index 0000000..fa211a9 --- /dev/null +++ b/customer-api-consumer/target/build-metrics.json @@ -0,0 +1 @@ +{"duration":646,"records":[{"duration":134,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#generateConfigClass","started":"07:05:27.226","dependents":[],"id":254,"thread":"build-12"},{"duration":96,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createBuildTimeConstJsTemplate","started":"07:05:27.616","dependents":[399,398],"id":397,"thread":"build-39"},{"duration":88,"stepId":"io.quarkus.deployment.steps.MainClassBuildStep#build","started":"07:05:27.759","dependents":[],"id":409,"thread":"build-39"},{"duration":84,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#getAllExtensions","started":"07:05:27.525","dependents":[395,379,386,394,380],"id":378,"thread":"build-36"},{"duration":75,"stepId":"io.quarkus.deployment.ide.IdeProcessor#detectRunningIdeProcesses","started":"07:05:27.215","dependents":[243],"id":241,"thread":"build-24"},{"duration":75,"stepId":"io.quarkus.deployment.index.ApplicationArchiveBuildStep#build","started":"07:05:27.281","dependents":[352,403,315,388,252,260,251,253,255],"id":250,"thread":"build-32"},{"duration":74,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#setupConsole","started":"07:05:27.259","dependents":[247,248,249,253],"id":246,"thread":"build-29"},{"duration":71,"stepId":"io.quarkus.arc.deployment.ArcProcessor#registerBeans","started":"07:05:27.410","dependents":[343,335,331,342,338,348,334,336,344,337,328,333,332,329,330],"id":327,"thread":"build-38"},{"duration":68,"stepId":"io.quarkus.arc.deployment.ArcProcessor#generateResources","started":"07:05:27.521","dependents":[388,366,408],"id":365,"thread":"build-12"},{"duration":54,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#logConsoleCommand","started":"07:05:27.215","dependents":[385],"id":230,"thread":"build-16"},{"duration":50,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupLoggingRuntimeInit","started":"07:05:27.369","dependents":[409,406,408],"id":326,"thread":"build-32"},{"duration":42,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#ioThreadDetector","started":"07:05:27.203","dependents":[409,183],"id":169,"thread":"build-5"},{"duration":39,"stepId":"io.quarkus.arc.deployment.ArcProcessor#buildCompatibleExtensions","started":"07:05:27.223","dependents":[315,325],"id":228,"thread":"build-2"},{"duration":37,"stepId":"io.quarkus.devui.deployment.logstream.LogStreamProcessor#handler","started":"07:05:27.209","dependents":[409,326],"id":172,"thread":"build-19"},{"duration":34,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#produceNamedHttpSecurityPolicies","started":"07:05:27.211","dependents":[343,409,342,344],"id":166,"thread":"build-4"},{"duration":33,"stepId":"io.quarkus.deployment.steps.ApplicationIndexBuildStep#build","started":"07:05:27.248","dependents":[333,381,335,250,383,239,325],"id":238,"thread":"build-5"},{"duration":31,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#bodyHandler","started":"07:05:27.259","dependents":[409,404],"id":240,"thread":"build-38"},{"duration":31,"stepId":"io.quarkus.devui.deployment.menu.ConfigurationProcessor#registerJsonRpcService","started":"07:05:27.215","dependents":[343,409,245,342,187,279,344],"id":170,"thread":"build-21"},{"duration":30,"stepId":"io.quarkus.deployment.steps.CompiledJavaVersionBuildStep#compiledJavaVersion","started":"07:05:27.213","dependents":[381],"id":155,"thread":"build-11"},{"duration":29,"stepId":"io.quarkus.mutiny.deployment.MutinyProcessor#buildTimeInit","started":"07:05:27.205","dependents":[409],"id":141,"thread":"build-3"},{"duration":28,"stepId":"io.quarkus.vertx.http.deployment.webjar.WebJarProcessor#processWebJarDevMode","started":"07:05:27.610","dependents":[409,395,396],"id":394,"thread":"build-17"},{"duration":26,"stepId":"io.quarkus.deployment.steps.ConfigDescriptionBuildStep#createConfigDescriptions","started":"07:05:27.254","dependents":[314,297],"id":237,"thread":"build-32"},{"duration":26,"stepId":"io.quarkus.netty.deployment.NettyProcessor#eagerlyInitClass","started":"07:05:27.207","dependents":[409],"id":138,"thread":"build-15"},{"duration":25,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#helpCommand","started":"07:05:27.220","dependents":[385],"id":165,"thread":"build-31"},{"duration":23,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#setupAdditionalBeans","started":"07:05:27.209","dependents":[409,315,325],"id":132,"thread":"build-8"},{"duration":23,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#createVertxThreadFactory","started":"07:05:27.222","dependents":[217,409],"id":164,"thread":"build-22"},{"duration":22,"stepId":"io.quarkus.deployment.steps.PreloadClassesBuildStep#preInit","started":"07:05:27.212","dependents":[409],"id":142,"thread":"build-6"},{"duration":22,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#quitCommand","started":"07:05:27.222","dependents":[385],"id":162,"thread":"build-32"},{"duration":21,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#buildStatic","started":"07:05:27.230","dependents":[409],"id":188,"thread":"build-20"},{"duration":21,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#eventLoopCount","started":"07:05:27.229","dependents":[409,407],"id":182,"thread":"build-37"},{"duration":21,"stepId":"io.quarkus.arc.deployment.ArcProcessor#validate","started":"07:05:27.496","dependents":[353,352,360,388,362,356,355,365,354],"id":351,"thread":"build-16"},{"duration":21,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#setupEndpoints","started":"07:05:27.592","dependents":[387,409,389,388,384,408,382],"id":381,"thread":"build-6"},{"duration":21,"stepId":"io.quarkus.deployment.dev.io.NioThreadPoolDevModeProcessor#setupTCCL","started":"07:05:27.211","dependents":[409],"id":135,"thread":"build-10"},{"duration":20,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#registerDevUiHandlers","started":"07:05:27.733","dependents":[402,409,401],"id":400,"thread":"build-49"},{"duration":19,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#build","started":"07:05:27.228","dependents":[409,201,315,325],"id":175,"thread":"build-38"},{"duration":19,"stepId":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveProcessor#setupClientProxies","started":"07:05:27.595","dependents":[387,409,388,408],"id":383,"thread":"build-39"},{"duration":18,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createIndexHtmlTemplate","started":"07:05:27.713","dependents":[399],"id":398,"thread":"build-49"},{"duration":18,"stepId":"io.quarkus.cache.deployment.CacheProcessor#cacheManagerInfos","started":"07:05:27.234","dependents":[409,340],"id":189,"thread":"build-41"},{"duration":17,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#preinitializeRouter","started":"07:05:27.274","dependents":[402,343,409,342,344],"id":242,"thread":"build-3"},{"duration":15,"stepId":"io.quarkus.vertx.http.deployment.console.ConsoleProcessor#setupConsole","started":"07:05:27.248","dependents":[405],"id":227,"thread":"build-21"},{"duration":15,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#generateMappings","started":"07:05:27.369","dependents":[329,356,408,330,355],"id":313,"thread":"build-27"},{"duration":15,"stepId":"io.quarkus.deployment.steps.RuntimeConfigSetupBuildStep#setupRuntimeConfig","started":"07:05:27.204","dependents":[189,345,200,390,180,192,370,407,242,341,404,217,406,372,231,235,346,405,409,194,369,347,391,252,182,209,402,326,340,396,240],"id":71,"thread":"build-9"},{"duration":15,"stepId":"io.quarkus.arc.deployment.BeanArchiveProcessor#build","started":"07:05:27.382","dependents":[321,338,317,382,374,337,325,316,381,323,318,324,383,320,322],"id":315,"thread":"build-12"},{"duration":15,"stepId":"io.quarkus.vertx.http.deployment.GeneratedStaticResourcesProcessor#process","started":"07:05:27.237","dependents":[402,409,403,401],"id":192,"thread":"build-3"},{"duration":14,"stepId":"io.quarkus.virtual.threads.VirtualThreadsProcessor#setup","started":"07:05:27.258","dependents":[343,409,342,315,344,325],"id":234,"thread":"build-3"},{"duration":14,"stepId":"io.quarkus.devui.deployment.menu.ConfigurationProcessor#registerConfigs","started":"07:05:27.374","dependents":[409],"id":314,"thread":"build-11"},{"duration":14,"stepId":"io.quarkus.deployment.dev.HotDeploymentWatchedFileBuildStep#setupWatchedFileHotDeployment","started":"07:05:27.245","dependents":[405],"id":213,"thread":"build-6"},{"duration":14,"stepId":"io.quarkus.arc.deployment.ArcProcessor#quarkusMain","started":"07:05:27.209","dependents":[201,315,325],"id":93,"thread":"build-12"},{"duration":13,"stepId":"io.quarkus.rest.client.reactive.deployment.devconsole.RestClientReactiveDevUIProcessor#createJsonRPCServiceForCache","started":"07:05:27.230","dependents":[187,279],"id":158,"thread":"build-27"},{"duration":13,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#checkForBuildTimeConfigChange","started":"07:05:27.237","dependents":[409],"id":180,"thread":"build-15"},{"duration":12,"stepId":"io.quarkus.deployment.steps.BannerProcessor#recordBanner","started":"07:05:27.258","dependents":[409,326],"id":231,"thread":"build-17"},{"duration":12,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initBasicAuth","started":"07:05:27.231","dependents":[315,325],"id":156,"thread":"build-30"},{"duration":12,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#registerMetrics","started":"07:05:27.231","dependents":[409,326],"id":160,"thread":"build-25"},{"duration":11,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#addRestClientBeans","started":"07:05:27.369","dependents":[409,315],"id":310,"thread":"build-16"},{"duration":11,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#build_68c59e5d5fe4deeaa2b750dd2b2f234cee36c063","started":"07:05:27.262","dependents":[402,405,343,409,342,236,372,339,344,407,242,404],"id":235,"thread":"build-14"},{"duration":9,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#handleCustomAnnotatedMethods","started":"07:05:27.371","dependents":[311,315,325,312],"id":309,"thread":"build-24"},{"duration":9,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#setupDeployment","started":"07:05:27.614","dependents":[402,409,390,391,392,393,408,404,401],"id":389,"thread":"build-38"},{"duration":9,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#frameworkRoot","started":"07:05:27.235","dependents":[400,168,176,195,404,402,360,398,324,227,397,384,174,386,206,396],"id":161,"thread":"build-39"},{"duration":9,"stepId":"io.quarkus.arc.deployment.CommandLineArgumentsProcessor#commandLineArgs","started":"07:05:27.216","dependents":[343,342,315,344,325],"id":109,"thread":"build-18"},{"duration":8,"stepId":"io.quarkus.deployment.steps.DevModeBuildStep#watchChanges","started":"07:05:27.235","dependents":[213],"id":157,"thread":"build-29"},{"duration":8,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#build","started":"07:05:27.262","dependents":[343,409,342,344],"id":232,"thread":"build-6"},{"duration":8,"stepId":"io.quarkus.arc.deployment.ArcProcessor#setupExecutor","started":"07:05:27.262","dependents":[409],"id":233,"thread":"build-27"},{"duration":8,"stepId":"io.quarkus.arc.deployment.ArcProcessor#initialize","started":"07:05:27.402","dependents":[338,362,327],"id":325,"thread":"build-12"},{"duration":8,"stepId":"io.quarkus.deployment.steps.ApplicationInfoBuildStep#create","started":"07:05:27.235","dependents":[409],"id":154,"thread":"build-36"},{"duration":7,"stepId":"io.quarkus.deployment.steps.ClassTransformingBuildStep#handleClassTransformation","started":"07:05:27.615","dependents":[],"id":388,"thread":"build-6"},{"duration":7,"stepId":"io.quarkus.deployment.steps.CombinedIndexBuildStep#build","started":"07:05:27.358","dependents":[279,257,256,260,300,329,299,261,295,302,308,304,387,258,259,336,262,283,272,309,301,263,274,267,282,265,298,293,264,268,266,330,320,269,271,270,313,310,325,273,286,311,326,305,275,276,285,303,296],"id":255,"thread":"build-29"},{"duration":7,"stepId":"io.quarkus.arc.deployment.SyntheticBeansProcessor#initRegular","started":"07:05:27.486","dependents":[348],"id":343,"thread":"build-32"},{"duration":7,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#registerUiExtension","started":"07:05:27.249","dependents":[394],"id":206,"thread":"build-17"},{"duration":7,"stepId":"io.quarkus.arc.deployment.SyntheticBeansProcessor#initRuntime","started":"07:05:27.486","dependents":[405,409,345,347,348,346],"id":344,"thread":"build-36"},{"duration":7,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#processSmallRyeHealthConfigValues","started":"07:05:27.229","dependents":[361],"id":150,"thread":"build-7"},{"duration":7,"stepId":"io.quarkus.deployment.dev.IsolatedDevModeMain$AddApplicationClassPredicateBuildStep$1@3302d92b","started":"07:05:27.236","dependents":[381,325],"id":159,"thread":"build-6"},{"duration":7,"stepId":"io.quarkus.devui.deployment.build.BuildMetricsDevUIProcessor#additionalBeans","started":"07:05:27.216","dependents":[315,325],"id":95,"thread":"build-23"},{"duration":6,"stepId":"io.quarkus.jsonb.deployment.JsonbProcessor#generateCustomizer","started":"07:05:27.221","dependents":[315],"id":119,"thread":"build-30"},{"duration":6,"stepId":"io.quarkus.devui.deployment.menu.ContinuousTestingProcessor#createJsonRPCService","started":"07:05:27.214","dependents":[245,187,279],"id":81,"thread":"build-2"},{"duration":6,"stepId":"io.quarkus.vertx.http.deployment.StaticResourcesProcessor#collectStaticResources","started":"07:05:27.255","dependents":[372],"id":224,"thread":"build-25"},{"duration":6,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#serverSerializers","started":"07:05:27.595","dependents":[409,389,408],"id":377,"thread":"build-30"},{"duration":6,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#vertxIntegration","started":"07:05:27.215","dependents":[375,383,382,377],"id":82,"thread":"build-17"},{"duration":6,"stepId":"io.quarkus.vertx.http.deployment.GeneratedStaticResourcesProcessor#produceResources","started":"07:05:27.237","dependents":[224],"id":153,"thread":"build-13"},{"duration":6,"stepId":"io.quarkus.arc.deployment.devui.ArcDevModeApiProcessor#collectBeanInfo","started":"07:05:27.517","dependents":[363],"id":362,"thread":"build-36"},{"duration":6,"stepId":"io.quarkus.arc.deployment.ShutdownBuildSteps#addScope","started":"07:05:27.230","dependents":[322],"id":149,"thread":"build-34"},{"duration":6,"stepId":"io.quarkus.deployment.steps.NativeImageConfigBuildStep#build","started":"07:05:27.252","dependents":[409],"id":210,"thread":"build-19"},{"duration":6,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerProvidersFromAnnotations","started":"07:05:27.369","dependents":[315,356,408,308,351],"id":305,"thread":"build-36"},{"duration":6,"stepId":"io.quarkus.jsonb.deployment.JsonbProcessor#processJsonbAdapters","started":"07:05:27.208","dependents":[356,351,322],"id":48,"thread":"build-17"},{"duration":5,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createBuildTimeData","started":"07:05:27.611","dependents":[398,397],"id":386,"thread":"build-30"},{"duration":5,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#setUpDefaultMediaType","started":"07:05:27.251","dependents":[383],"id":204,"thread":"build-13"},{"duration":5,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#findAllJsonRPCMethods","started":"07:05:27.366","dependents":[397,376],"id":279,"thread":"build-12"},{"duration":5,"stepId":"io.quarkus.vertx.http.deployment.ManagementInterfaceSecurityProcessor#createManagementAuthMechHandler","started":"07:05:27.255","dependents":[409,369,223],"id":218,"thread":"build-11"},{"duration":5,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#filterMultipleVertxInstancesWarning","started":"07:05:27.206","dependents":[326,108],"id":30,"thread":"build-11"},{"duration":5,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#defineHealthRoutes","started":"07:05:27.398","dependents":[402,401],"id":324,"thread":"build-38"},{"duration":5,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#addMpClientEnricher","started":"07:05:27.205","dependents":[383],"id":28,"thread":"build-2"},{"duration":5,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#autoAddScope","started":"07:05:27.215","dependents":[322],"id":79,"thread":"build-25"},{"duration":5,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthDevUiProcessor#create","started":"07:05:27.247","dependents":[409,378,364],"id":195,"thread":"build-32"},{"duration":5,"stepId":"io.quarkus.arc.deployment.devui.ArcDevUIProcessor#registerMonitoringComponents","started":"07:05:27.250","dependents":[315,325],"id":201,"thread":"build-4"},{"duration":5,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#logging","started":"07:05:27.216","dependents":[110],"id":85,"thread":"build-28"},{"duration":4,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#setupAuthenticationMechanisms","started":"07:05:27.262","dependents":[409,315,404,325],"id":229,"thread":"build-36"},{"duration":4,"stepId":"io.quarkus.deployment.pkg.steps.JarResultBuildStep#outputTarget","started":"07:05:27.254","dependents":[221],"id":211,"thread":"build-27"},{"duration":4,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#cors","started":"07:05:27.253","dependents":[409,404],"id":209,"thread":"build-39"},{"duration":4,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#testConsoleCommand","started":"07:05:27.367","dependents":[385],"id":283,"thread":"build-5"},{"duration":4,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#createJsonRpcRouter","started":"07:05:27.592","dependents":[409],"id":376,"thread":"build-17"},{"duration":4,"stepId":"io.quarkus.arc.deployment.ConfigStaticInitBuildSteps#transformConfigProducer","started":"07:05:27.213","dependents":[325],"id":60,"thread":"build-13"},{"duration":4,"stepId":"io.quarkus.devui.deployment.logstream.LogStreamProcessor#createJsonRPCService","started":"07:05:27.223","dependents":[245,187,279],"id":122,"thread":"build-17"},{"duration":4,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#transformEndpoints","started":"07:05:27.398","dependents":[325],"id":323,"thread":"build-16"},{"duration":4,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#additionalBean","started":"07:05:27.247","dependents":[315,255,325],"id":187,"thread":"build-22"},{"duration":4,"stepId":"io.quarkus.devui.deployment.menu.ReadmeProcessor#createReadmePage","started":"07:05:27.230","dependents":[386],"id":144,"thread":"build-35"},{"duration":4,"stepId":"io.quarkus.cache.deployment.CacheProcessor#autoInjectCacheName","started":"07:05:27.223","dependents":[319,322],"id":121,"thread":"build-20"},{"duration":3,"stepId":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveProcessor#registerInvocationCallbacks","started":"07:05:27.370","dependents":[409],"id":296,"thread":"build-20"},{"duration":3,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#convertRoutes","started":"07:05:27.245","dependents":[402,401],"id":176,"thread":"build-25"},{"duration":3,"stepId":"io.quarkus.vertx.http.deployment.devmode.ArcDevProcessor#registerRoutes","started":"07:05:27.517","dependents":[402,409,403,365,401],"id":360,"thread":"build-32"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#checkMixingStacks","started":"07:05:27.253","dependents":[405],"id":203,"thread":"build-29"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#scanResources","started":"07:05:27.367","dependents":[281,389,374,325,381,323,284,309,290,383,292,287,289,288],"id":278,"thread":"build-14"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#recordableConstructor","started":"07:05:27.223","dependents":[409],"id":116,"thread":"build-29"},{"duration":3,"stepId":"io.quarkus.rest.client.reactive.jsonb.deployment.RestClientReactiveJsonbProcessor#additionalProviders","started":"07:05:27.204","dependents":[375,383,382,377],"id":11,"thread":"build-8"},{"duration":3,"stepId":"io.quarkus.devui.deployment.menu.DependenciesProcessor#createAppDeps","started":"07:05:27.247","dependents":[386],"id":179,"thread":"build-29"},{"duration":3,"stepId":"io.quarkus.arc.deployment.AutoProducerMethodsProcessor#annotationTransformer","started":"07:05:27.398","dependents":[325],"id":321,"thread":"build-11"},{"duration":3,"stepId":"io.quarkus.deployment.steps.BlockingOperationControlBuildStep#blockingOP","started":"07:05:27.247","dependents":[409],"id":183,"thread":"build-19"},{"duration":3,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#gatherMvnpmJars","started":"07:05:27.251","dependents":[400,398],"id":198,"thread":"build-11"},{"duration":3,"stepId":"io.quarkus.deployment.ExtensionLoader#config","started":"07:05:27.220","dependents":[321,105,192,249,238,242,254,118,295,386,123,355,218,206,409,175,127,362,182,394,150,402,243,128,139,272,156,160,143,154,189,389,180,157,319,161,148,407,404,293,406,163,167,229,171,346,270,369,313,195,310,173,326,305,383,340,396,186,260,370,363,341,251,365,201,250,356,366,181,308,405,335,194,204,347,391,388,202,252,209,333,360,211,237,400,196,345,200,390,315,282,361,217,208,212,324,372,231,234,235,216,246,219,220,325,381,214,240,215,226],"id":96,"thread":"build-14"},{"duration":3,"stepId":"io.quarkus.vertx.deployment.EventBusCodecProcessor#registerCodecs","started":"07:05:27.398","dependents":[339,408],"id":320,"thread":"build-36"},{"duration":3,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#registerAuthMechanismSelectionInterceptor","started":"07:05:27.367","dependents":[333,409,286,291],"id":282,"thread":"build-6"},{"duration":3,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerCompressionInterceptors","started":"07:05:27.233","dependents":[408],"id":151,"thread":"build-17"},{"duration":3,"stepId":"io.quarkus.devui.deployment.build.BuildMetricsDevUIProcessor#create","started":"07:05:27.228","dependents":[409],"id":129,"thread":"build-40"},{"duration":3,"stepId":"io.quarkus.deployment.steps.ThreadPoolSetup#createExecutor","started":"07:05:27.257","dependents":[222,409,232,225,233,404,235],"id":217,"thread":"build-13"},{"duration":3,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#currentContextFactory","started":"07:05:27.260","dependents":[409,366],"id":226,"thread":"build-20"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#securityExceptionMappers","started":"07:05:27.214","dependents":[311],"id":58,"thread":"build-14"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#defaultUnwrappedException","started":"07:05:27.212","dependents":[311],"id":51,"thread":"build-22"},{"duration":2,"stepId":"io.quarkus.arc.deployment.ArcProcessor#loggerProducer","started":"07:05:27.219","dependents":[315,325],"id":84,"thread":"build-20"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#contextInjection","started":"07:05:27.203","dependents":[315,319,322,325],"id":6,"thread":"build-6"},{"duration":2,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#setupConfigOverride","started":"07:05:27.216","dependents":[],"id":63,"thread":"build-20"},{"duration":2,"stepId":"io.quarkus.cache.deployment.devui.CacheDevUiProcessor#createJsonRPCServiceForCache","started":"07:05:27.206","dependents":[187,279],"id":19,"thread":"build-14"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#fileHandling","started":"07:05:27.218","dependents":[383,382,377],"id":78,"thread":"build-7"},{"duration":2,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupLoggingStaticInit","started":"07:05:27.249","dependents":[409],"id":186,"thread":"build-27"},{"duration":2,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigRootsAsBeans","started":"07:05:27.259","dependents":[343,342,344],"id":219,"thread":"build-36"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#createHttpAuthenticationHandler","started":"07:05:27.259","dependents":[409,370,229],"id":220,"thread":"build-4"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#setupEndpoints","started":"07:05:27.592","dependents":[375,383,408,382,377],"id":374,"thread":"build-49"},{"duration":2,"stepId":"io.quarkus.mutiny.deployment.MutinyProcessor#runtimeInit","started":"07:05:27.261","dependents":[409],"id":225,"thread":"build-11"},{"duration":2,"stepId":"io.quarkus.deployment.steps.DevServicesConfigBuildStep#setup","started":"07:05:27.371","dependents":[405,314,361,297],"id":294,"thread":"build-29"},{"duration":2,"stepId":"io.quarkus.devui.deployment.menu.ContinuousTestingProcessor#continuousTestingState","started":"07:05:27.592","dependents":[409],"id":373,"thread":"build-38"},{"duration":2,"stepId":"io.quarkus.netty.deployment.NettyProcessor#setNettyMachineId","started":"07:05:27.226","dependents":[409],"id":124,"thread":"build-37"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initMtlsClientAuth","started":"07:05:27.231","dependents":[315,325],"id":139,"thread":"build-28"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#buildSetup","started":"07:05:27.205","dependents":[409],"id":12,"thread":"build-10"},{"duration":2,"stepId":"io.quarkus.arc.deployment.AutoAddScopeProcessor#annotationTransformer","started":"07:05:27.399","dependents":[356,351,325],"id":322,"thread":"build-12"},{"duration":2,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#startTesting","started":"07:05:27.334","dependents":[405,326],"id":249,"thread":"build-38"},{"duration":2,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#overrideContextInternalInterfaceToAddSafeGuards","started":"07:05:27.216","dependents":[388],"id":64,"thread":"build-22"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#handleApplication","started":"07:05:27.371","dependents":[389,374,298,312,381,300,311,299,383,408,301,302,304,377,303],"id":293,"thread":"build-38"},{"duration":2,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#unremovableBeans","started":"07:05:27.224","dependents":[356,351],"id":115,"thread":"build-27"},{"duration":2,"stepId":"io.quarkus.netty.deployment.NettyProcessor#registerEventLoopBeans","started":"07:05:27.274","dependents":[343,409,342,344],"id":236,"thread":"build-6"},{"duration":2,"stepId":"io.quarkus.arc.deployment.staticmethods.InterceptedStaticMethodsProcessor#collectInterceptedStaticMethods","started":"07:05:27.482","dependents":[338,356,351,371],"id":337,"thread":"build-36"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.devmode.NotFoundProcessor#resourceNotFoundDataAvailable","started":"07:05:27.230","dependents":[315,325],"id":133,"thread":"build-18"},{"duration":2,"stepId":"io.quarkus.jsonp.deployment.JsonpProcessor#build","started":"07:05:27.209","dependents":[409,408],"id":37,"thread":"build-13"},{"duration":2,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#watchConfigFiles","started":"07:05:27.206","dependents":[213],"id":15,"thread":"build-4"},{"duration":2,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#generateBuilders","started":"07:05:27.519","dependents":[408],"id":361,"thread":"build-15"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#finalizeRouter","started":"07:05:27.754","dependents":[405,409,406],"id":404,"thread":"build-49"},{"duration":2,"stepId":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveProcessor#initializeStorkFilter","started":"07:05:27.219","dependents":[315,408,255,325],"id":89,"thread":"build-33"},{"duration":2,"stepId":"io.quarkus.arc.deployment.devui.ArcDevUIProcessor#createJsonRPCService","started":"07:05:27.230","dependents":[187,279],"id":136,"thread":"build-36"},{"duration":2,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setUpDefaultLogCleanupFilters","started":"07:05:27.223","dependents":[361],"id":108,"thread":"build-28"},{"duration":2,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setUpDefaultLevels","started":"07:05:27.223","dependents":[326,361],"id":110,"thread":"build-34"},{"duration":2,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#createVertxContextHandlers","started":"07:05:27.253","dependents":[217,409,225],"id":202,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#integrateEagerSecurity","started":"07:05:27.372","dependents":[381],"id":295,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#deprioritizeLegacyProviders","started":"07:05:27.216","dependents":[383,377],"id":59,"thread":"build-7"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveDevModeProcessor#openCommand","started":"07:05:27.614","dependents":[385],"id":384,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.devui.deployment.menu.DependenciesProcessor#createBuildTimeActions","started":"07:05:27.248","dependents":[245],"id":177,"thread":"build-4"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#annotationsTransformer","started":"07:05:27.230","dependents":[325],"id":130,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#healthCheck","started":"07:05:27.228","dependents":[315,325],"id":127,"thread":"build-23"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#buildTimeRunTimeConfig","started":"07:05:27.258","dependents":[408,361],"id":216,"thread":"build-22"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#validateCacheAnnotationsAndProduceCacheNames","started":"07:05:27.481","dependents":[340,365],"id":336,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.jsonb.common.deployment.ResteasyReactiveJsonbCommonProcessor#beans","started":"07:05:27.206","dependents":[315,325],"id":8,"thread":"build-7"},{"duration":1,"stepId":"io.quarkus.jsonb.deployment.JsonbProcessor#build","started":"07:05:27.370","dependents":[315,408,325],"id":285,"thread":"build-17"},{"duration":1,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#setupExceptionHandler","started":"07:05:27.334","dependents":[253],"id":248,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ProfileBuildStep#defaultProfile","started":"07:05:27.223","dependents":[361],"id":103,"thread":"build-35"},{"duration":1,"stepId":"io.quarkus.netty.deployment.NettyProcessor#registerQualifiers","started":"07:05:27.223","dependents":[315,325],"id":104,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateConfigMappingsInjectionPoints","started":"07:05:27.517","dependents":[359,361],"id":356,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.deployment.ide.IdeProcessor#effectiveIde","started":"07:05:27.291","dependents":[248,386,244,253],"id":243,"thread":"build-6"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setMinLevelForInitialConfigurator","started":"07:05:27.235","dependents":[409],"id":148,"thread":"build-18"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ClassPathSystemPropBuildStep#set","started":"07:05:27.253","dependents":[409],"id":199,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#unremovableBeans","started":"07:05:27.372","dependents":[356,351],"id":292,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setProperty","started":"07:05:27.223","dependents":[409],"id":99,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.cache.deployment.devui.CacheDevUiProcessor#create","started":"07:05:27.251","dependents":[378,364],"id":193,"thread":"build-15"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setUpDarkeningDefault","started":"07:05:27.223","dependents":[361],"id":106,"thread":"build-7"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#registerSyntheticObservers","started":"07:05:27.494","dependents":[350,349,356,408,351,365],"id":348,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#buildResourceInterceptors","started":"07:05:27.381","dependents":[381,323,389,315,325],"id":312,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#build_9d6b7122fb368970c50c3a870d1f672392cd8afb","started":"07:05:27.213","dependents":[408,210],"id":50,"thread":"build-18"},{"duration":1,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#sharedStateListener","started":"07:05:27.217","dependents":[249],"id":65,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.arc.deployment.SplitPackageProcessor#splitPackageDetection","started":"07:05:27.357","dependents":[365],"id":251,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.stork.deployment.SmallRyeStorkProcessor#unremoveableBeans","started":"07:05:27.219","dependents":[356,351],"id":83,"thread":"build-13"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupStackTraceFormatter","started":"07:05:27.357","dependents":[326],"id":253,"thread":"build-6"},{"duration":1,"stepId":"io.quarkus.netty.deployment.NettyProcessor#cleanupUnsafeLog","started":"07:05:27.213","dependents":[326,108],"id":44,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#registerContextPropagation","started":"07:05:27.227","dependents":[188],"id":123,"thread":"build-28"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#unremovableAsyncObserverExceptionHandlers","started":"07:05:27.230","dependents":[356,351],"id":131,"thread":"build-33"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateStaticInitConfigProperty","started":"07:05:27.517","dependents":[409,408],"id":358,"thread":"build-11"},{"duration":1,"stepId":"io.quarkiverse.caffeine.deployment.devui.CaffeineDevUIProcessor#createCard","started":"07:05:27.231","dependents":[378,364],"id":134,"thread":"build-9"},{"duration":1,"stepId":"io.quarkus.deployment.pkg.steps.FileSystemResourcesBuildStep#notNormalMode","started":"07:05:27.260","dependents":[],"id":221,"thread":"build-19"},{"duration":1,"stepId":"io.quarkus.deployment.steps.MainClassBuildStep#mainClassBuildStep","started":"07:05:27.366","dependents":[388],"id":260,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#setupRequestCollectingFilter","started":"07:05:27.233","dependents":[312],"id":140,"thread":"build-41"},{"duration":1,"stepId":"io.quarkus.stork.deployment.SmallRyeStorkProcessor#initializeStork","started":"07:05:27.494","dependents":[409],"id":347,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.arc.deployment.StartupBuildSteps#unremovableBeans","started":"07:05:27.219","dependents":[356,351],"id":75,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateRuntimeConfigProperty","started":"07:05:27.517","dependents":[409,408],"id":357,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#detectBasicAuthImplicitlyRequired","started":"07:05:27.482","dependents":[409],"id":333,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#restClientAnnotationsTransformer","started":"07:05:27.211","dependents":[310],"id":35,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.StaticResourcesProcessor#runtimeInit","started":"07:05:27.592","dependents":[409,404],"id":372,"thread":"build-39"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#initializeRouter","started":"07:05:27.753","dependents":[409,403,404],"id":402,"thread":"build-39"},{"duration":1,"stepId":"io.quarkus.deployment.steps.DevServicesConfigBuildStep#deprecated","started":"07:05:27.213","dependents":[294],"id":49,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.devui.deployment.welcome.WelcomeProcessor#createWelcomePages","started":"07:05:27.610","dependents":[386],"id":380,"thread":"build-38"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveVertxWebSocketIntegrationProcessor#scanner","started":"07:05:27.211","dependents":[381],"id":41,"thread":"build-21"},{"duration":1,"stepId":"io.quarkus.netty.deployment.NettyProcessor#build","started":"07:05:27.245","dependents":[408,210],"id":171,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#shutdownListener","started":"07:05:27.257","dependents":[406],"id":212,"thread":"build-15"},{"duration":1,"stepId":"io.quarkus.deployment.steps.MainClassBuildStep#applicationReflection","started":"07:05:27.209","dependents":[408],"id":22,"thread":"build-4"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.devservices.DevServicesRestClientHttpProxyProcessor#registerDefaultProvider","started":"07:05:27.226","dependents":[277],"id":120,"thread":"build-13"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.devconsole.RestClientReactiveDevUIProcessor#create","started":"07:05:27.211","dependents":[378,364],"id":34,"thread":"build-14"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ReflectiveBeanClassesProcessor#implicitReflectiveBeanClasses","started":"07:05:27.482","dependents":[365],"id":332,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#registerHealthUiHandler","started":"07:05:27.639","dependents":[402,409,401],"id":396,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#collectEventConsumers","started":"07:05:27.481","dependents":[348,339],"id":334,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.tls.CertificatesProcessor#initializeCertificate","started":"07:05:27.485","dependents":[343,409,342,344,404],"id":341,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ObservabilityProcessor#preAuthFailureFilter","started":"07:05:27.623","dependents":[409,393,404],"id":392,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#setMinimalNettyMaxOrderSize","started":"07:05:27.216","dependents":[173,171],"id":56,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#setMtlsCertificateRoleProperties","started":"07:05:27.251","dependents":[409],"id":194,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.deployment.ide.IdeProcessor#detectIdeFiles","started":"07:05:27.206","dependents":[243],"id":9,"thread":"build-6"},{"duration":1,"stepId":"io.quarkus.stork.deployment.SmallRyeStorkProcessor#checkThatTheKubernetesExtensionIsUsedWhenKubernetesServiceDiscoveryInOnTheClasspath","started":"07:05:27.255","dependents":[347],"id":207,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#createSynthBeansForConfiguredInjectionPoints","started":"07:05:27.481","dependents":[343,409,342,344],"id":331,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.devui.deployment.menu.EndpointsProcessor#createJsonRPCService","started":"07:05:27.206","dependents":[187,279],"id":10,"thread":"build-13"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#announceFeature","started":"07:05:27.236","dependents":[409],"id":152,"thread":"build-42"},{"duration":1,"stepId":"io.quarkus.deployment.steps.RegisterForReflectionBuildStep#build","started":"07:05:27.366","dependents":[387,408],"id":261,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#responseHeaderSupport","started":"07:05:27.214","dependents":[381],"id":54,"thread":"build-23"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#exposeCustomScopeNames","started":"07:05:27.223","dependents":[321,335,201,125,315,149,310,322,325],"id":102,"thread":"build-25"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ReflectiveHierarchyStep#build","started":"07:05:27.615","dependents":[408],"id":387,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ShutdownListenerBuildStep#setupShutdown","started":"07:05:27.757","dependents":[409],"id":406,"thread":"build-39"},{"duration":1,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#registerSafeDuplicatedContextInterceptor","started":"07:05:27.219","dependents":[315,325],"id":76,"thread":"build-30"},{"duration":1,"stepId":"io.quarkus.arc.deployment.WrongAnnotationUsageProcessor#detect","started":"07:05:27.481","dependents":[365],"id":335,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#reinitializeClassesForNetty","started":"07:05:27.206","dependents":[210],"id":7,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateConfigPropertiesInjectionPoints","started":"07:05:27.517","dependents":[359],"id":355,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#mapPageBuildTimeData","started":"07:05:27.525","dependents":[397],"id":364,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#unknownConfigFiles","started":"07:05:27.357","dependents":[409],"id":252,"thread":"build-38"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.jsonb.common.deployment.ResteasyReactiveJsonbCommonProcessor#registerVertxJsonSupport","started":"07:05:27.219","dependents":[119],"id":74,"thread":"build-22"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#initializeContainer","started":"07:05:27.589","dependents":[409,367],"id":366,"thread":"build-37"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#addRoutingCtxToSecurityEventsForCdiBeans","started":"07:05:27.255","dependents":[409],"id":205,"thread":"build-22"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForExceptionMappers","started":"07:05:27.381","dependents":[389,315,408,325],"id":311,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.arc.deployment.devui.ArcDevUIProcessor#pages","started":"07:05:27.524","dependents":[378,364],"id":363,"thread":"build-15"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.devmode.NotFoundProcessor#routeNotFound","started":"07:05:27.754","dependents":[409],"id":403,"thread":"build-38"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ShutdownBuildSteps#unremovableBeans","started":"07:05:27.219","dependents":[356,351],"id":77,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.devui.ResteasyReactiveDevUIProcessor#createJsonRPCService","started":"07:05:27.219","dependents":[187,279],"id":80,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#build","started":"07:05:27.483","dependents":[405,409,347,341],"id":339,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#openSocket","started":"07:05:27.757","dependents":[409,408],"id":407,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.arc.deployment.AutoInjectFieldProcessor#annotationTransformer","started":"07:05:27.399","dependents":[325],"id":319,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#configureCacheManagerSyntheticBean","started":"07:05:27.483","dependents":[343,409,342,344],"id":340,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#unlessBuildProperty","started":"07:05:27.368","dependents":[280,293],"id":271,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#registerVerticleClasses","started":"07:05:27.367","dependents":[408],"id":265,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#findEnablementStereotypes","started":"07:05:27.368","dependents":[271,275,276,274],"id":264,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.JniProcessor#setupJni","started":"07:05:27.226","dependents":[210],"id":118,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#addDefaultAuthFailureHandler","started":"07:05:27.624","dependents":[409,404],"id":393,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#additionalBeans","started":"07:05:27.376","dependents":[315,408,325],"id":307,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#runtimeConfiguration","started":"07:05:27.623","dependents":[409,391],"id":390,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#produceEagerSecurityInterceptorStorage","started":"07:05:27.372","dependents":[343,409,342,344],"id":291,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#installCliCommands","started":"07:05:27.615","dependents":[405],"id":385,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#cleanupVertxWarnings","started":"07:05:27.213","dependents":[326,108],"id":43,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#additionalBeans","started":"07:05:27.203","dependents":[315,325],"id":1,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.deployment.SecureRandomProcessor#registerReflectiveMethods","started":"07:05:27.226","dependents":[408],"id":117,"thread":"build-36"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForParamConverters_dcdfdd2a310a09abe5ee3f0ed2b2bc49f36f3d07","started":"07:05:27.375","dependents":[381,389,315,408,325],"id":306,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.CollectionClassProcessor#setupCollectionClasses","started":"07:05:27.223","dependents":[408],"id":97,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CurateOutcomeBuildStep#removeResources","started":"07:05:27.254","dependents":[388],"id":196,"thread":"build-22"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#vetoMPConfigProperties","started":"07:05:27.203","dependents":[325],"id":2,"thread":"build-4"},{"duration":0,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#registerBean","started":"07:05:27.214","dependents":[315,325],"id":46,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.credentials.CredentialsProcessor#unremoveable","started":"07:05:27.224","dependents":[356,351],"id":101,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#mapDeploymentMethods","started":"07:05:27.293","dependents":[279,376],"id":245,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.arc.deployment.HotDeploymentConfigBuildStep#startup","started":"07:05:27.211","dependents":[40],"id":31,"thread":"build-18"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.EndpointsProcessor#createEndpointsPage","started":"07:05:27.248","dependents":[386],"id":174,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.deployment.steps.AdditionalClassLoaderResourcesBuildStep#appendAdditionalClassloaderResources","started":"07:05:27.220","dependents":[255],"id":72,"thread":"build-34"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createKnownInternalImportMap","started":"07:05:27.245","dependents":[398],"id":168,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.JaxrsMethodsProcessor#jaxrsMethods","started":"07:05:27.209","dependents":[308],"id":23,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#unremovableBeans","started":"07:05:27.225","dependents":[356,351],"id":112,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ShutdownBuildSteps#registerShutdownObservers","started":"07:05:27.495","dependents":[351],"id":349,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.deployment.index.ApplicationArchiveBuildStep#addConfiguredIndexedDependencies","started":"07:05:27.257","dependents":[250],"id":208,"thread":"build-36"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#handleSseEventFilter","started":"07:05:27.398","dependents":[408],"id":316,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#quarkusApplication","started":"07:05:27.368","dependents":[315,325],"id":268,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.execannotations.ExecutionModelAnnotationsProcessor#check","started":"07:05:27.376","dependents":[],"id":308,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#activateSslNativeSupport","started":"07:05:27.218","dependents":[210],"id":66,"thread":"build-31"},{"duration":0,"stepId":"io.quarkus.arc.deployment.init.InitializationTaskProcessor#startApplicationInitializer","started":"07:05:27.494","dependents":[409],"id":346,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#marker","started":"07:05:27.207","dependents":[250],"id":14,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerProviderBeans","started":"07:05:27.368","dependents":[315,325],"id":266,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#perClassExceptionMapperSupport","started":"07:05:27.372","dependents":[325],"id":288,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.arc.deployment.AutoInjectFieldProcessor#autoInjectQualifiers","started":"07:05:27.398","dependents":[319,322],"id":317,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#registerSecurityInterceptors","started":"07:05:27.254","dependents":[315,325],"id":197,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#determineRegisteredRestClients","started":"07:05:27.368","dependents":[272,310],"id":270,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForFeatures","started":"07:05:27.375","dependents":[389,307],"id":301,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#addAllWriteableMarker","started":"07:05:27.595","dependents":[388],"id":375,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.logging.LoggingWithPanacheProcessor#process","started":"07:05:27.369","dependents":[388],"id":273,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#scanForParameterContainers","started":"07:05:27.374","dependents":[381,383],"id":300,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#missingDevUIMessageHandler","started":"07:05:27.334","dependents":[405],"id":247,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.ManagementInterfaceSecurityProcessor#setupAuthenticationMechanisms","started":"07:05:27.262","dependents":[409,315,404,325],"id":223,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.EventConsumerMethodsProcessor#eventConsumerMethods","started":"07:05:27.215","dependents":[308],"id":53,"thread":"build-26"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.devui.ResteasyReactiveDevUIProcessor#createPages","started":"07:05:27.211","dependents":[378,364],"id":33,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#preventLoggerContention","started":"07:05:27.222","dependents":[110],"id":92,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.devconsole.RestClientReactiveDevUIProcessor#beans","started":"07:05:27.212","dependents":[315,325],"id":39,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.deployment.ForkJoinPoolProcessor#setProperty","started":"07:05:27.233","dependents":[409],"id":137,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.GeneratedStaticResourcesProcessor#devMode","started":"07:05:27.236","dependents":[153,192,213],"id":147,"thread":"build-28"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#compressionSupport","started":"07:05:27.260","dependents":[381],"id":215,"thread":"build-41"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#generateCustomProducer","started":"07:05:27.372","dependents":[315,325],"id":289,"thread":"build-21"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#loadAllBuildTimeTemplates","started":"07:05:27.732","dependents":[400],"id":399,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#asyncSupport","started":"07:05:27.230","dependents":[381],"id":126,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#featureAndCapability","started":"07:05:27.219","dependents":[409,184],"id":70,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#responseStatusSupport","started":"07:05:27.204","dependents":[381],"id":4,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#unlessBuildProfile","started":"07:05:27.370","dependents":[280,293],"id":276,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.recording.substitutions.AdditionalSubstitutionsBuildStep#additionalSubstitutions","started":"07:05:27.224","dependents":[409],"id":107,"thread":"build-23"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CapabilityAggregationStep#provideCapabilities","started":"07:05:27.249","dependents":[184],"id":178,"thread":"build-31"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForDynamicFeatures","started":"07:05:27.375","dependents":[389,307],"id":304,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#config","started":"07:05:27.211","dependents":[361],"id":38,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.devservices.DevServicesRestClientHttpProxyProcessor#determineRequiredProxies","started":"07:05:27.369","dependents":[277],"id":272,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#ifBuildProperty","started":"07:05:27.369","dependents":[280,293],"id":274,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#feature","started":"07:05:27.218","dependents":[409],"id":68,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.deployment.recording.AnnotationProxyBuildStep#build","started":"07:05:27.282","dependents":[339],"id":239,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#registerVerticleClasses","started":"07:05:27.366","dependents":[408],"id":257,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.arc.deployment.LookupConditionsProcessor#suppressConditionsGenerators","started":"07:05:27.398","dependents":[325],"id":318,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ClassPathSystemPropBuildStep#produce","started":"07:05:27.251","dependents":[199],"id":185,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#brandingFiles","started":"07:05:27.234","dependents":[213],"id":143,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#generateConfigProperties","started":"07:05:27.367","dependents":[329,356,408,330,355],"id":267,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.StartupBuildSteps#addScope","started":"07:05:27.229","dependents":[322],"id":125,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ExecutorServiceProcessor#executorServiceBean","started":"07:05:27.261","dependents":[343,342,344],"id":222,"thread":"build-41"},{"duration":0,"stepId":"io.quarkus.arc.deployment.LifecycleEventsBuildStep#startupEvent","started":"07:05:27.757","dependents":[409,407],"id":405,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.ConstructorPropertiesProcessor#build","started":"07:05:27.367","dependents":[408],"id":263,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.devui.deployment.ide.IdeProcessor#createJsonRPCService","started":"07:05:27.293","dependents":[245],"id":244,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initFormAuth","started":"07:05:27.259","dependents":[402,409,315,325,401],"id":214,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#pathInterfaceImpls","started":"07:05:27.372","dependents":[315,325],"id":287,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#configureHandlers","started":"07:05:27.624","dependents":[409],"id":391,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#notifyBeanContainerListeners","started":"07:05:27.591","dependents":[409,368],"id":367,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.BuildMetricsProcessor#createBuildMetricsPages","started":"07:05:27.223","dependents":[386],"id":98,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ConfigurationProcessor#createConfigurationPages","started":"07:05:27.374","dependents":[386],"id":297,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForInterceptors","started":"07:05:27.375","dependents":[312],"id":302,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#cacheControlSupport","started":"07:05:27.209","dependents":[381],"id":27,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.cache.deployment.CacheProcessor#enhanceRestClientMethods","started":"07:05:27.368","dependents":[388,356,351],"id":269,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#registerBean","started":"07:05:27.211","dependents":[315,325],"id":32,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.deployment.ExtensionLoader#booleanSupplierFactory","started":"07:05:27.218","dependents":[178],"id":62,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ContinuousTestingProcessor#createContinuousTestingPages","started":"07:05:27.222","dependents":[386],"id":88,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigStaticInitBuildSteps#registerBeans","started":"07:05:27.208","dependents":[315,325],"id":20,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerProvidersInstances","started":"07:05:27.366","dependents":[305],"id":256,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#shutdownHealthCheck","started":"07:05:27.244","dependents":[315,325],"id":163,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#shouldNotRemoveHttpServerOptionsCustomizers","started":"07:05:27.209","dependents":[356,351],"id":26,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ReflectiveHierarchyStep#ignoreJavaClassWarnings","started":"07:05:27.218","dependents":[387],"id":67,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#suppressNonRuntimeConfigChanged","started":"07:05:27.236","dependents":[180],"id":145,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createRelocationMap","started":"07:05:27.219","dependents":[398],"id":73,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ExtensionsProcessor#createExtensionsPages","started":"07:05:27.610","dependents":[386],"id":379,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.arc.deployment.SyntheticBeansProcessor#initStatic","started":"07:05:27.486","dependents":[409,348],"id":342,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.arc.deployment.UnremovableAnnotationsProcessor#unremovableBeans","started":"07:05:27.213","dependents":[356,351],"id":42,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#searchForProviders","started":"07:05:27.252","dependents":[250],"id":191,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.devui.deployment.logstream.LogStreamProcessor#additionalBean","started":"07:05:27.225","dependents":[315,325],"id":111,"thread":"build-35"},{"duration":0,"stepId":"io.quarkus.deployment.execannotations.ExecutionModelAnnotationsProcessor#devuiJsonRpcServices","started":"07:05:27.216","dependents":[308],"id":57,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#handleClassLevelExceptionMappers","started":"07:05:27.372","dependents":[381,408],"id":290,"thread":"build-5"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#registerHttpAuthMechanismAnnotations","started":"07:05:27.214","dependents":[282],"id":52,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#processSmallRyeHealthRuntimeConfig","started":"07:05:27.494","dependents":[409],"id":345,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.arc.deployment.TestsAsBeansProcessor#testAnnotations","started":"07:05:27.209","dependents":[201,315,325],"id":25,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigClasses","started":"07:05:27.519","dependents":[409],"id":359,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ReadmeProcessor#createJsonRPCServiceForCache","started":"07:05:27.209","dependents":[187,279],"id":24,"thread":"build-18"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#resourceIndex","started":"07:05:27.366","dependents":[315,278],"id":258,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.staticmethods.InterceptedStaticMethodsProcessor#callInitializer","started":"07:05:27.592","dependents":[409],"id":371,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#beanDefiningAnnotations","started":"07:05:27.226","dependents":[201,315,325],"id":113,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.netty.deployment.NettyProcessor#limitArenaSize","started":"07:05:27.247","dependents":[409],"id":173,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#validateAsyncObserverExceptionHandlers","started":"07:05:27.517","dependents":[365],"id":354,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.ManagementInterfaceSecurityProcessor#initializeAuthMechanismHandler","started":"07:05:27.592","dependents":[409],"id":369,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.arc.deployment.TestsAsBeansProcessor#testClassBeans","started":"07:05:27.222","dependents":[315,325],"id":90,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerHeaderFactoryBeans","started":"07:05:27.366","dependents":[315,325],"id":259,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.cache.deployment.CacheProcessor#feature","started":"07:05:27.207","dependents":[409],"id":13,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#httpRoot","started":"07:05:27.230","dependents":[400,403,227,384,176,404],"id":128,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.deployment.steps.PreloadClassesBuildStep#registerPreInitClasses","started":"07:05:27.209","dependents":[],"id":21,"thread":"build-10"},{"duration":0,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#createAllRoutes","started":"07:05:27.639","dependents":[400],"id":395,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#transformInjectionPoint","started":"07:05:27.208","dependents":[325],"id":16,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.deployment.steps.BannerProcessor#watchBannerChanges","started":"07:05:27.224","dependents":[213],"id":105,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#additionalBeans","started":"07:05:27.203","dependents":[315,325],"id":3,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#ifBuildProfile","started":"07:05:27.369","dependents":[280,293],"id":275,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#handle","started":"07:05:27.216","dependents":[326,108],"id":55,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.deployment.dev.ConfigureDisableInstrumentationBuildStep#configure","started":"07:05:27.212","dependents":[405],"id":40,"thread":"build-23"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerCustomConfigBeanTypes","started":"07:05:27.481","dependents":[343,342,408,344],"id":328,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#conditionTransformer","started":"07:05:27.370","dependents":[325],"id":280,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CurateOutcomeBuildStep#curateOutcome","started":"07:05:27.245","dependents":[196,245,279,203,388,179,184,238,394,177,364,178,250,397,386,185,198,378,380,199,193],"id":167,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#doNotRemoveVertxOptionsCustomizers","started":"07:05:27.211","dependents":[356,351],"id":36,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.devui.deployment.build.BuildMetricsDevUIProcessor#createJsonRPCService","started":"07:05:27.224","dependents":[187,279],"id":100,"thread":"build-37"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigMappingsBean","started":"07:05:27.482","dependents":[348],"id":330,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#releaseConfigOnShutdown","started":"07:05:27.254","dependents":[409],"id":200,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.arc.deployment.StartupBuildSteps#registerStartupObservers","started":"07:05:27.495","dependents":[351],"id":350,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.pkg.steps.NativeImageBuildStep#ignoreBuildPropertyChanges","started":"07:05:27.214","dependents":[180],"id":47,"thread":"build-21"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.jsonb.deployment.RestClientReactiveJsonbProcessor#feature","started":"07:05:27.210","dependents":[409],"id":29,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#launchMode","started":"07:05:27.222","dependents":[315,325],"id":91,"thread":"build-34"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ObserverValidationProcessor#validateApplicationObserver","started":"07:05:27.517","dependents":[365],"id":352,"thread":"build-11"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CapabilityAggregationStep#aggregateCapabilities","started":"07:05:27.250","dependents":[247,387,191,389,190,203,282,310,407,220,325,381,311,197,383,392,261,224,295,205,229,218,207],"id":184,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.LoggingBeanSupportProcessor#discoveredComponents","started":"07:05:27.218","dependents":[201,315,325],"id":61,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForContextResolvers","started":"07:05:27.373","dependents":[389,315,408,325],"id":298,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.devservices.DevServicesRestClientHttpProxyProcessor#start","started":"07:05:27.369","dependents":[294],"id":277,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#unremovableContextMethodParams","started":"07:05:27.371","dependents":[356,351],"id":281,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForParamConverters_59e3169e3a646b7fcf3083416f558434b73816c5","started":"07:05:27.375","dependents":[306],"id":299,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#additionalAsyncTypeMethodScanners","started":"07:05:27.208","dependents":[381],"id":18,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.arc.deployment.HotDeploymentConfigBuildStep#configFile","started":"07:05:27.223","dependents":[213],"id":94,"thread":"build-33"},{"duration":0,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupLogFilters","started":"07:05:27.222","dependents":[326,108],"id":87,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#notFoundRoutes","started":"07:05:27.753","dependents":[403],"id":401,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#subResourcesAsBeans","started":"07:05:27.371","dependents":[315,356,351,325],"id":284,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.DevServicesProcessor#createDevServicesPages","started":"07:05:27.226","dependents":[386],"id":114,"thread":"build-33"},{"duration":0,"stepId":"io.quarkus.deployment.SslProcessor#setupNativeSsl","started":"07:05:27.250","dependents":[210],"id":181,"thread":"build-31"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#additionalReflection","started":"07:05:27.614","dependents":[408],"id":382,"thread":"build-49"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#providersFromClasspath","started":"07:05:27.213","dependents":[375,383,382,377],"id":45,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initializeAuthenticationHandler","started":"07:05:27.592","dependents":[409],"id":370,"thread":"build-22"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerQueryParamStyleForConfig","started":"07:05:27.218","dependents":[254],"id":69,"thread":"build-26"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#configPropertyInjectionPoints","started":"07:05:27.517","dependents":[408,358,357],"id":353,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.netty.deployment.NettyProcessor#cleanupMacDNSInLog","started":"07:05:27.208","dependents":[326,108],"id":17,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigPropertiesBean","started":"07:05:27.482","dependents":[348],"id":329,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#filterNettyHostsFileParsingWarn","started":"07:05:27.221","dependents":[326,108],"id":86,"thread":"build-35"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#runtimeOverrideConfig","started":"07:05:27.236","dependents":[361],"id":146,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.arc.deployment.staticmethods.InterceptedStaticMethodsProcessor#processInterceptedStaticMethods","started":"07:05:27.484","dependents":[388,408],"id":338,"thread":"build-11"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ObservabilityProcessor#methodScanner","started":"07:05:27.252","dependents":[381],"id":190,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#signalBeanContainerReady","started":"07:05:27.591","dependents":[405,409,389,369,403,376,370,374,404,371,381,373,372,383,377],"id":368,"thread":"build-37"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#collectInterceptedMethods","started":"07:05:27.372","dependents":[291,295],"id":286,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#scanForIOInterceptors","started":"07:05:27.375","dependents":[312],"id":303,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#registerCustomExceptionMappers","started":"07:05:27.205","dependents":[309],"id":5,"thread":"build-4"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ReflectionDiagnosticProcessor#writeReflectionData","started":"07:05:27.759","dependents":[],"id":408,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.caffeine.deployment.CaffeineProcessor#cacheLoaders","started":"07:05:27.367","dependents":[408],"id":262,"thread":"build-24"}],"started":"2024-08-30T07:05:27.202","items":[{"count":858,"class":"io.quarkus.deployment.builditem.ConfigDescriptionBuildItem"},{"count":262,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem"},{"count":254,"class":"io.quarkus.deployment.builditem.GeneratedClassBuildItem"},{"count":97,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveMethodBuildItem"},{"count":51,"class":"io.quarkus.deployment.builditem.MainBytecodeRecorderBuildItem"},{"count":46,"class":"io.quarkus.arc.deployment.AdditionalBeanBuildItem"},{"count":43,"class":"io.quarkus.hibernate.validator.spi.AdditionalConstrainedClassBuildItem"},{"count":40,"class":"io.quarkus.deployment.builditem.StaticBytecodeRecorderBuildItem"},{"count":39,"class":"io.quarkus.vertx.http.deployment.RouteBuildItem"},{"count":32,"class":"io.quarkus.arc.deployment.SyntheticBeanBuildItem"},{"count":31,"class":"io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem"},{"count":17,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveFieldBuildItem"},{"count":16,"class":"io.quarkus.deployment.builditem.HotDeploymentWatchedFileBuildItem"},{"count":14,"class":"io.quarkus.deployment.builditem.RunTimeConfigurationDefaultBuildItem"},{"count":14,"class":"io.quarkus.deployment.builditem.ConfigClassBuildItem"},{"count":13,"class":"io.quarkus.arc.deployment.UnremovableBeanBuildItem"},{"count":13,"class":"io.quarkus.vertx.http.deployment.devmode.NotFoundPageDisplayableEndpointBuildItem"},{"count":11,"class":"io.quarkus.arc.deployment.BeanDefiningAnnotationBuildItem"},{"count":11,"class":"io.quarkus.deployment.builditem.SuppressNonRuntimeConfigChangedWarningBuildItem"},{"count":11,"class":"io.quarkus.deployment.builditem.CapabilityBuildItem"},{"count":11,"class":"io.quarkus.deployment.builditem.AdditionalIndexedClassesBuildItem"},{"count":10,"class":"io.quarkus.deployment.builditem.nativeimage.RuntimeReinitializedClassBuildItem"},{"count":10,"class":"io.quarkus.devui.spi.JsonRPCProvidersBuildItem"},{"count":9,"class":"io.quarkus.devui.deployment.InternalPageBuildItem"},{"count":9,"class":"io.quarkus.arc.deployment.AnnotationsTransformerBuildItem"},{"count":8,"class":"io.quarkus.deployment.builditem.FeatureBuildItem"},{"count":8,"class":"io.quarkus.vertx.http.deployment.webjar.WebJarBuildItem"},{"count":7,"class":"io.quarkus.devui.deployment.DevUIWebJarBuildItem"},{"count":7,"class":"io.quarkus.deployment.logging.LogCleanupFilterBuildItem"},{"count":7,"class":"io.quarkus.devui.deployment.DevUIRoutesBuildItem"},{"count":6,"class":"io.quarkus.deployment.builditem.SystemPropertyBuildItem"},{"count":6,"class":"io.quarkus.resteasy.reactive.server.spi.MethodScannerBuildItem"},{"count":6,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageSystemPropertyBuildItem"},{"count":6,"class":"io.quarkus.devui.spi.page.CardPageBuildItem"},{"count":5,"class":"io.quarkus.resteasy.reactive.spi.ExceptionMapperBuildItem"},{"count":5,"class":"io.quarkus.devui.spi.buildtime.BuildTimeActionBuildItem"},{"count":5,"class":"io.quarkus.arc.deployment.GeneratedBeanBuildItem"},{"count":5,"class":"io.quarkus.deployment.builditem.ConsoleCommandBuildItem"},{"count":5,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyWriterBuildItem"},{"count":4,"class":"io.quarkus.arc.deployment.AutoAddScopeBuildItem"},{"count":4,"class":"io.quarkus.deployment.execannotations.ExecutionModelAnnotationsAllowedBuildItem"},{"count":4,"class":"io.quarkus.devui.deployment.BuildTimeConstBuildItem"},{"count":4,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyReaderOverrideBuildItem"},{"count":4,"class":"io.quarkus.deployment.builditem.AdditionalApplicationArchiveMarkerBuildItem"},{"count":4,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyWriterOverrideBuildItem"},{"count":3,"class":"io.quarkus.vertx.http.deployment.HttpAuthMechanismAnnotationBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.RunTimeConfigBuilderBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.ShutdownListenerBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveHierarchyBuildItem"},{"count":3,"class":"io.quarkus.vertx.http.deployment.FilterBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageConfigBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.BytecodeTransformerBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.ServiceStartBuildItem"},{"count":3,"class":"io.quarkus.arc.deployment.AutoInjectAnnotationBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.common.deployment.ResourceInterceptorsContributorBuildItem"},{"count":2,"class":"io.quarkus.cache.deployment.spi.CacheManagerInfoBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.ObjectSubstitutionBuildItem"},{"count":2,"class":"io.quarkus.devui.spi.buildtime.QuteTemplateBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.StaticInitConfigBuilderBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.RecordableConstructorBuildItem"},{"count":2,"class":"io.quarkus.deployment.dev.testing.TestListenerBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.server.spi.UnwrappedExceptionBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.spi.CustomExceptionMapperBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.BytecodeRecorderObjectLoaderBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyReaderBuildItem"},{"count":2,"class":"io.quarkus.devui.spi.buildtime.StaticContentBuildItem"},{"count":2,"class":"io.quarkus.devui.deployment.InternalImportMapBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.LogCategoryBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.MvnpmBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.AnnotationProxyBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.TransformedClassesBuildItem"},{"count":1,"class":"io.quarkus.netty.deployment.EventLoopGroupBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.devui.ArcBeanInfoBuildItem"},{"count":1,"class":"io.quarkus.deployment.console.ConsoleInstalledBuildItem"},{"count":1,"class":"io.quarkus.jaxrs.client.reactive.deployment.RestClientDefaultProducesBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanDiscoveryFinishedBuildItem"},{"count":1,"class":"io.quarkus.rest.client.reactive.spi.RestClientAnnotationsTransformerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.RunTimeConfigurationProxyBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.SynthesisFinishedBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ConfigurationTypeBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageResourceBundleBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ResourceInterceptorsBuildItem"},{"count":1,"class":"io.quarkus.vertx.core.deployment.EventLoopCountBuildItem"},{"count":1,"class":"io.quarkus.vertx.core.deployment.CoreVertxBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BuildCompatibleExtensionsBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ContextResolversBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.ThemeVarsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveHierarchyIgnoreWarningBuildItem"},{"count":1,"class":"io.quarkus.jsonb.spi.JsonbDeserializerBuildItem"},{"count":1,"class":"io.quarkus.jsonb.spi.JsonbSerializerBuildItem"},{"count":1,"class":"io.quarkus.smallrye.context.deployment.ContextPropagationInitializedBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ExceptionMappersBuildItem"},{"count":1,"class":"io.quarkus.vertx.deployment.LocalCodecSelectorTypesBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.InterceptorResolverBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.InitialRouterBuildItem"},{"count":1,"class":"io.quarkus.deployment.dev.ExceptionNotificationBuildItem"},{"count":1,"class":"io.quarkus.deployment.pkg.builditem.CompiledJavaVersionBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ValidationPhaseBuildItem"},{"count":1,"class":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveEnricherBuildItem"},{"count":1,"class":"io.quarkus.netty.deployment.EventLoopSupplierBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanArchiveIndexBuildItem"},{"count":1,"class":"io.quarkus.cache.deployment.CacheNamesBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ConsoleFormatterBannerBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.SuppressConditionGeneratorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BuildTimeEnabledStereotypesBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationArchivesBuildItem"},{"count":1,"class":"io.quarkus.deployment.BooleanSupplierFactoryBuildItem"},{"count":1,"class":"io.quarkus.tls.TlsRegistryBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ContextHandlerBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ParamConverterProvidersBuildItem"},{"count":1,"class":"io.quarkus.rest.client.reactive.spi.DevServicesRestClientProxyProvider$BuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.spi.HandlerConfigurationProviderBuildItem"},{"count":1,"class":"io.quarkus.smallrye.health.deployment.SmallRyeHealthBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.TransformedAnnotationsBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveResourceMethodEntriesBuildItem"},{"count":1,"class":"io.quarkus.rest.client.reactive.deployment.RegisteredRestClientBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.GeneratedFileSystemResourceHandledBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.DevServicesLauncherConfigResultBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ExcludedTypeBuildItem"},{"count":1,"class":"io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ValidationPhaseBuildItem$ValidationErrorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.PreBeanContainerBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.InjectionPointTransformerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ThreadFactoryBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationIndexBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.webjar.WebJarResultsBuildItem"},{"count":1,"class":"io.quarkus.netty.deployment.MinNettyAllocatorMaxOrderBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.NonApplicationRootPathBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.VertxWebRouterBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.CombinedIndexBuildItem"},{"count":1,"class":"io.quarkus.deployment.Capabilities"},{"count":1,"class":"io.quarkus.devui.deployment.ExtensionsBuildItem"},{"count":1,"class":"io.quarkus.deployment.logging.LoggingSetupBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ExecutorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ArcContainerBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.JsonRPCRuntimeMethodsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ExtensionSslNativeSupportBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.SetupEndpointsResultBuildItem"},{"count":1,"class":"io.quarkus.smallrye.context.deployment.spi.ThreadContextProviderBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveDeploymentInfoBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ObserverRegistrationPhaseBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationClassNameBuildItem"},{"count":1,"class":"io.quarkus.jaxrs.client.reactive.deployment.RestClientDefaultConsumesBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ResourceScanningResultBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageResourceBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.StreamingLogHandlerBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ServerSerialisersBuildItem"},{"count":1,"class":"io.quarkus.deployment.dev.DisableInstrumentationForIndexPredicateBuildItem"},{"count":1,"class":"io.quarkus.vertx.deployment.VertxBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveDeploymentBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanContainerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.ServiceProviderBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.CurrentContextFactoryBuildItem"},{"count":1,"class":"io.quarkus.deployment.ide.EffectiveIdeBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ParameterContainersBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.JaxRsResourceIndexBuildItem"},{"count":1,"class":"io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.HttpRootPathBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ConfigurationBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.DeploymentMethodBuildItem"},{"count":1,"class":"io.quarkus.deployment.steps.CapabilityAggregationStep$CapabilitiesConfiguredInDescriptorsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationStartBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.RelocationImportMapBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationClassPredicateBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ApplicationResultBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.BodyHandlerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.LogCategoryMinLevelDefaultsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.GeneratedResourceBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ContextRegistrationPhaseBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.IOThreadDetectorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.InvokerFactoryBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.SslNativeConfigBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.BuiltInReaderOverrideBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.CompletedApplicationClassPredicateBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationInfoBuildItem"},{"count":1,"class":"io.quarkus.deployment.ide.IdeRunningProcessBuildItem"},{"count":1,"class":"io.quarkus.deployment.ide.IdeFileBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.spi.ContainerRequestFilterBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.MainClassBuildItem"}],"itemsCount":2200,"buildTarget":"quarkus-application"} \ No newline at end of file diff --git a/customer-api-consumer/target/classes/application.properties b/customer-api-consumer/target/classes/application.properties new file mode 100644 index 0000000..4a64edc --- /dev/null +++ b/customer-api-consumer/target/classes/application.properties @@ -0,0 +1,10 @@ +%dev.quarkus.http.port=8081 +%dev.quarkus.rest-client."customer-api".url=http://localhost:8080/api/v1 +quarkus.rest-client."customer-api".connect-timeout=2000 +%dev.quarkus.rest-client."customer-api".read-timeout=2000 +quarkus.cache.caffeine."customers-api-cache".metrics-enabled=true +quarkus.cache.caffeine."customers-api-cache".expire-after-write=60S +quarkus.management.port=9091 +quarkus.management.enabled=true +%dev.quarkus.management.host=localhost + diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerConsumerApplication.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerConsumerApplication.class new file mode 100644 index 0000000000000000000000000000000000000000..b898783e014b173bb65f09c31585210174e3f840 GIT binary patch literal 653 zcmbVKxlRKy5Piy}RLhOhP&pebG3>5`*XF;dKooocAB7kv zKqwFemOSHmp7Ysn?=PR1a=Kruk6f-*)Js<+}n@I+)Ce%88`v1J%JRGG3z48_f@ zW{6RY1qdq`M}=WUX@2j7xpO%;F0(3?{9<5}KOqbYn>W!g>6JAq>(sWI0VWyt+mh#T z*CmeXg%n?%P2k(6cKO-0h`%eUfDABL@nP46ZgfG%A TGt84JV5u*cu|nF{Tm?P=B_p9I literal 0 HcmV?d00001 diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerService.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerService.class new file mode 100644 index 0000000000000000000000000000000000000000..cb7c95a525303870e7c052e28d2c64cfd14dccda GIT binary patch literal 1101 zcmb7DZBJ7%6n;83CfkJZA_yqHlJJsI6a6+qvdoy6Of(Glz1%gd(A#@$dl&gvnrMuE z@CW##jOUh33?Y`tL8e}>%$J~iH z)sjbvaak-aZ)eUYH0eq^RFPz;Mx&Khsu-Sit~(rQC5``!K_{A3+`?2Dl^Uw3G3?yz zIK#}b^ewH&v>e0A#%4z)+{Hp`dnS3Dd1cP{d!w2aOk<{udJVIfW2m2qq2O9jns1Lz zWaJqpca>3ok6~hCv&T?uCwj*ak{CEWg%JMGd)FnsU;3oEM<2uTL1w&)WluRp z{9DE(UgUU0e=S$^g5>Lp-|ED_d&A>np3xuohR=F zd5mmj>kHU-lo>veSHJ>|lVN8GcW7QakHR9B$h#Y2ma#&%N;|9c-*dQ6W{oZ?1n6zr z%%R!m5PgBT`VS%-A&!wATp-Qj;RtDuY=J;3Ti# literal 0 HcmV?d00001 diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomersResource.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomersResource.class new file mode 100644 index 0000000000000000000000000000000000000000..3540d58c429083fb09aa515ced0e1937dbcbcf46 GIT binary patch literal 2520 zcmb7GYgZFj6x}xj28U5%v{9tRYSBWh41K9>EUgAn+6dMlec0D!av=kgnK%zx{#CnH zTdNH z)i>p~G^ys8>yc}Pw&$7)*`YRqGEQhXY2X!91S-#VEillLU4g4phdO&MvY3O@2F7rP z$b1#3kRGR|SBLQ`1@oS(W^_#8tcKSOoQt(e31~;MHp^?9%A�b=$SWxe>g9Nevea zT*R9KCwtk|J;$LY^P_SQ`bu^L#`_3JrDij^Bw+%_Mo`5i4R6H^ToyRh^Vg>=aP9w+ ze~x8s7^Z;Gb-aytG`wrzJ-km~2h=nCo*%H=Ha%wRZU|h-!X{kQ+tP2UN0D+ZRm)d4 z!@B2!g{|VMfou4H&a9Lff!TZx2W&EjIo4|$YJJ5Za|x;v8*{fSmt;o~avtV-XG-!ow`Y}+(4Uuc&0#*ko+H0=#nhLKOtGtV7{>uIAV zsic@|b2J{iAGx93QLA=f6Uzto5@yOu;cnxb{k=@ zOfzwBQ_Hk=_bB1s^t_NQC%Y-`poA|3F6O&Co%B9LnP_wfU+LW6UmIA$atX_$gZNg* zclchz4+bO_*$jsfXgRiW!@a#eA9@@M(iHb@36{Y8;RQHo-v={mF~U?j*0G_XZNSE+ z!1-j%6LxKP+uKrRBdHNdkn7S4J)c{8gaz!q{gdY;GfFwTBi)vxg2{&GZAIN$TAh65 za*{s7m7T82tH1bV8uD=4{NBhs*ZFyB+M!~P8;h>1{JJB9Km{7OlP?_Lkk=;iqP&Qp=+>o72YkN9?n_kz!I^;d}Bp*_V>;0cZw@H3?a%*A)K z0V@1|igu@Qoac`zF;Yu>!k-bqP5u>7$2^~9o^J8EK#kiEAp*wX7-Es~IO;XN#ZmP% z>Z$U0FIwEs;KxkEWG;%HMTxzS6Z?MepT>~_e8$H)G_o*re8$f7>SMfCz4RNzFMLar z8cF~hO+r*stt_0~as`dZ? literal 0 HcmV?d00001 diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApi.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApi.class new file mode 100644 index 0000000000000000000000000000000000000000..2c83cc37c733b2ac09b406bc5b400e107c09832d GIT binary patch literal 600 zcmb7?O>R>$5XZ-XHZ=W8X^?170E>1G(5PyZ78XPTrNE{u*O|Uf>SsTB>{huN3l6}c z5c8hMrV?3EKjVl}Tkq3~ur8Uy3cm$DGq82d zRj|1vGO+k3IG%NdG|=NTdaso@hVkq_TE5Kj>|B?Dqj?FLYx>T@x1J^;#BAGq+Uubf zdax;5d=gB8AFsY@#M@`LUs7BYN20EcN9&9BKD15a*>!nvDKQurT*s0eePG}E*Mg{Y zr|n}5T+CvskW|`6R26n9HYwgIj)^3%HRsR@i*u@2GNrk?rrk7J^>jdYTz#UIfgSgE zI48DY1Ec3X+kCGP16*UWX~4h>{Q&?*XSo5J(1X5OJ$MCMy1&-bK=*Csc5c83?CQ;4 UN9=dRNbR9|4@BX^784l#0e=OuDgXcg literal 0 HcmV?d00001 diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApiProvider.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApiProvider.class new file mode 100644 index 0000000000000000000000000000000000000000..072e8b6eb6c4a493fa7408a381b07fb78d395272 GIT binary patch literal 819 zcmb7DO=}cE5PiMb?3&Hy!}yixN%W9-NQ(y%BEqubX;4XI@4Y>hO>btVhn}9`&r%Qs z5B>mul=x=Ing~JI!_=Fqu8&vM)xUoK_z7TyM+0=Q(noiQRrD0L=jOub%oH>IVLBHZ z6?(5-;o=*GmHmUs8g5~&kHHY@7%IF>MOXH$&T0l!CNDG5))!TsOVBoRQbawjtLUkZ zO7}7N3ztezShrVJh3Cm~d5#qJj_V@2Tqdq^(@aK1;iHL;wH00^KFqYRep!jmoejPW z{?w6NkSZ>SxuR)MAJa5$sWNSM>{C(LN?alD>wGHVlVN&=oy1#{O-yi&erfE+GuPHz zj{af{thYIncx^xmFZK_XAI8&UZq7}JMswg2%HY`dWqT}^)>bMOd-5N*w{mLgEYfRm z;_G1L9ml1xdyU+J_F=Ol3WqmkYD7Zt$;1 z+$460+(61LYMR*itv>q>^|d|TrfiOZ0d7+^3Fv?w+#xF5#XTnZH~1U+UwGKTRq)0Q W!3~e*9o#2AX#ICvx%ZdhL*NhpMA|a| literal 0 HcmV?d00001 diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerDto.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerDto.class new file mode 100644 index 0000000000000000000000000000000000000000..10519d6eed0c2c45cbbd53051972fe2129a8a6a2 GIT binary patch literal 1640 zcmb7E+iuf95S>k(rcK=@ZJIU>*K$qWi;Kh)MM$L;5-1czFYivWYPL8wve$eUNK{BX z@Bw@j;>?IWu!+Hot!V_(?>&^kkX}G*KeUrXo!W+UiL+?)DQu2~OSE z8+`Jm+YN&_8OX@(`bq}c-AiH};=Zp#K~|Eeo}g;`%=_%QiB`UQeEfQUhk2)Lnx--^ zfj5wX7E+Awf%;HKDmXPL+ooBX6ExjXk?!w%8qj(Q)oLK!cG&fNb{llnrg`Qp#u~0N z)o8Iqb(@xG8C94fOoDfvGuhRGCZDT7=@)_~T5BhQN~cmEn~E1&YuTDn>0a1F`bt{` z@*o*>WOU?pd{aADapFaa??b1h`zjW+-Tpt(cG5Bqj3|p2Wn7g-kc~QDUh1)YfyyW% zXbQkXmI9=))G2AbH7+%GUwtceKkU8tBIMRGLh&|&t|V#iV*g;vB&b0v z_%?BKVFhf_`9|W4f!)A&(l{6CCeC&Wpj&hsH$ivkF232|QZ~4r8@x*Qa)M{F!OOY9 z_j5B>vcZkq;0N>&nsC|AU<=%&vwlvcuQ(Oxvguh9y_6z`O|u}Zrl3ba7xCt)ipyha z0X9ZCb6rXv%!qQ-CG7$ZN9kw8qpiLC6}f)#iVybarb07Z8dKmY&$ literal 0 HcmV?d00001 diff --git a/customer-api-consumer/target/quarkus/bootstrap/dev-app-model.dat b/customer-api-consumer/target/quarkus/bootstrap/dev-app-model.dat new file mode 100644 index 0000000000000000000000000000000000000000..b5910c362d17a165efd985f32e1cbd4d0c241178 GIT binary patch literal 82338 zcmeHw3AAKYb?B|(y?Q-C13fU)KqI15RZq~M7-*n@jtwFWjerRE)w}P#>aK}fxB9(@ zh(skpaT(+E)u=y?K@*208qK6XiC<0fH6rn=iNiMw8ZgMMwg+YS1G@Ahi# z?u^%}UGB}ggI2Js*K0K!ZqV#@uEzI&|HS`MJaylD{

!?sZnVz1}WAXwJHgAaJ(q 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 pch%I5=icvthjX)Y^o-YU_{| Date: Fri, 30 Aug 2024 07:12:53 +0200 Subject: [PATCH 2/4] Delete target --- customer-api-consumer/target/build-metrics.json | 1 - .../target/classes/application.properties | 10 ---------- .../consumer/CustomerConsumerApplication.class | Bin 653 -> 0 bytes .../sample/consumer/CustomerService.class | Bin 1101 -> 0 bytes .../sample/consumer/CustomersResource.class | Bin 2520 -> 0 bytes .../sample/consumer/client/CustomerApi.class | Bin 600 -> 0 bytes .../consumer/client/CustomerApiProvider.class | Bin 819 -> 0 bytes .../sample/consumer/client/CustomerDto.class | Bin 1640 -> 0 bytes .../target/quarkus/bootstrap/dev-app-model.dat | Bin 82338 -> 0 bytes 9 files changed, 11 deletions(-) delete mode 100644 customer-api-consumer/target/build-metrics.json delete mode 100644 customer-api-consumer/target/classes/application.properties delete mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerConsumerApplication.class delete mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerService.class delete mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomersResource.class delete mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApi.class delete mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApiProvider.class delete mode 100644 customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerDto.class delete mode 100644 customer-api-consumer/target/quarkus/bootstrap/dev-app-model.dat diff --git a/customer-api-consumer/target/build-metrics.json b/customer-api-consumer/target/build-metrics.json deleted file mode 100644 index fa211a9..0000000 --- a/customer-api-consumer/target/build-metrics.json +++ /dev/null @@ -1 +0,0 @@ -{"duration":646,"records":[{"duration":134,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#generateConfigClass","started":"07:05:27.226","dependents":[],"id":254,"thread":"build-12"},{"duration":96,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createBuildTimeConstJsTemplate","started":"07:05:27.616","dependents":[399,398],"id":397,"thread":"build-39"},{"duration":88,"stepId":"io.quarkus.deployment.steps.MainClassBuildStep#build","started":"07:05:27.759","dependents":[],"id":409,"thread":"build-39"},{"duration":84,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#getAllExtensions","started":"07:05:27.525","dependents":[395,379,386,394,380],"id":378,"thread":"build-36"},{"duration":75,"stepId":"io.quarkus.deployment.ide.IdeProcessor#detectRunningIdeProcesses","started":"07:05:27.215","dependents":[243],"id":241,"thread":"build-24"},{"duration":75,"stepId":"io.quarkus.deployment.index.ApplicationArchiveBuildStep#build","started":"07:05:27.281","dependents":[352,403,315,388,252,260,251,253,255],"id":250,"thread":"build-32"},{"duration":74,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#setupConsole","started":"07:05:27.259","dependents":[247,248,249,253],"id":246,"thread":"build-29"},{"duration":71,"stepId":"io.quarkus.arc.deployment.ArcProcessor#registerBeans","started":"07:05:27.410","dependents":[343,335,331,342,338,348,334,336,344,337,328,333,332,329,330],"id":327,"thread":"build-38"},{"duration":68,"stepId":"io.quarkus.arc.deployment.ArcProcessor#generateResources","started":"07:05:27.521","dependents":[388,366,408],"id":365,"thread":"build-12"},{"duration":54,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#logConsoleCommand","started":"07:05:27.215","dependents":[385],"id":230,"thread":"build-16"},{"duration":50,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupLoggingRuntimeInit","started":"07:05:27.369","dependents":[409,406,408],"id":326,"thread":"build-32"},{"duration":42,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#ioThreadDetector","started":"07:05:27.203","dependents":[409,183],"id":169,"thread":"build-5"},{"duration":39,"stepId":"io.quarkus.arc.deployment.ArcProcessor#buildCompatibleExtensions","started":"07:05:27.223","dependents":[315,325],"id":228,"thread":"build-2"},{"duration":37,"stepId":"io.quarkus.devui.deployment.logstream.LogStreamProcessor#handler","started":"07:05:27.209","dependents":[409,326],"id":172,"thread":"build-19"},{"duration":34,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#produceNamedHttpSecurityPolicies","started":"07:05:27.211","dependents":[343,409,342,344],"id":166,"thread":"build-4"},{"duration":33,"stepId":"io.quarkus.deployment.steps.ApplicationIndexBuildStep#build","started":"07:05:27.248","dependents":[333,381,335,250,383,239,325],"id":238,"thread":"build-5"},{"duration":31,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#bodyHandler","started":"07:05:27.259","dependents":[409,404],"id":240,"thread":"build-38"},{"duration":31,"stepId":"io.quarkus.devui.deployment.menu.ConfigurationProcessor#registerJsonRpcService","started":"07:05:27.215","dependents":[343,409,245,342,187,279,344],"id":170,"thread":"build-21"},{"duration":30,"stepId":"io.quarkus.deployment.steps.CompiledJavaVersionBuildStep#compiledJavaVersion","started":"07:05:27.213","dependents":[381],"id":155,"thread":"build-11"},{"duration":29,"stepId":"io.quarkus.mutiny.deployment.MutinyProcessor#buildTimeInit","started":"07:05:27.205","dependents":[409],"id":141,"thread":"build-3"},{"duration":28,"stepId":"io.quarkus.vertx.http.deployment.webjar.WebJarProcessor#processWebJarDevMode","started":"07:05:27.610","dependents":[409,395,396],"id":394,"thread":"build-17"},{"duration":26,"stepId":"io.quarkus.deployment.steps.ConfigDescriptionBuildStep#createConfigDescriptions","started":"07:05:27.254","dependents":[314,297],"id":237,"thread":"build-32"},{"duration":26,"stepId":"io.quarkus.netty.deployment.NettyProcessor#eagerlyInitClass","started":"07:05:27.207","dependents":[409],"id":138,"thread":"build-15"},{"duration":25,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#helpCommand","started":"07:05:27.220","dependents":[385],"id":165,"thread":"build-31"},{"duration":23,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#setupAdditionalBeans","started":"07:05:27.209","dependents":[409,315,325],"id":132,"thread":"build-8"},{"duration":23,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#createVertxThreadFactory","started":"07:05:27.222","dependents":[217,409],"id":164,"thread":"build-22"},{"duration":22,"stepId":"io.quarkus.deployment.steps.PreloadClassesBuildStep#preInit","started":"07:05:27.212","dependents":[409],"id":142,"thread":"build-6"},{"duration":22,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#quitCommand","started":"07:05:27.222","dependents":[385],"id":162,"thread":"build-32"},{"duration":21,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#buildStatic","started":"07:05:27.230","dependents":[409],"id":188,"thread":"build-20"},{"duration":21,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#eventLoopCount","started":"07:05:27.229","dependents":[409,407],"id":182,"thread":"build-37"},{"duration":21,"stepId":"io.quarkus.arc.deployment.ArcProcessor#validate","started":"07:05:27.496","dependents":[353,352,360,388,362,356,355,365,354],"id":351,"thread":"build-16"},{"duration":21,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#setupEndpoints","started":"07:05:27.592","dependents":[387,409,389,388,384,408,382],"id":381,"thread":"build-6"},{"duration":21,"stepId":"io.quarkus.deployment.dev.io.NioThreadPoolDevModeProcessor#setupTCCL","started":"07:05:27.211","dependents":[409],"id":135,"thread":"build-10"},{"duration":20,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#registerDevUiHandlers","started":"07:05:27.733","dependents":[402,409,401],"id":400,"thread":"build-49"},{"duration":19,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#build","started":"07:05:27.228","dependents":[409,201,315,325],"id":175,"thread":"build-38"},{"duration":19,"stepId":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveProcessor#setupClientProxies","started":"07:05:27.595","dependents":[387,409,388,408],"id":383,"thread":"build-39"},{"duration":18,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createIndexHtmlTemplate","started":"07:05:27.713","dependents":[399],"id":398,"thread":"build-49"},{"duration":18,"stepId":"io.quarkus.cache.deployment.CacheProcessor#cacheManagerInfos","started":"07:05:27.234","dependents":[409,340],"id":189,"thread":"build-41"},{"duration":17,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#preinitializeRouter","started":"07:05:27.274","dependents":[402,343,409,342,344],"id":242,"thread":"build-3"},{"duration":15,"stepId":"io.quarkus.vertx.http.deployment.console.ConsoleProcessor#setupConsole","started":"07:05:27.248","dependents":[405],"id":227,"thread":"build-21"},{"duration":15,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#generateMappings","started":"07:05:27.369","dependents":[329,356,408,330,355],"id":313,"thread":"build-27"},{"duration":15,"stepId":"io.quarkus.deployment.steps.RuntimeConfigSetupBuildStep#setupRuntimeConfig","started":"07:05:27.204","dependents":[189,345,200,390,180,192,370,407,242,341,404,217,406,372,231,235,346,405,409,194,369,347,391,252,182,209,402,326,340,396,240],"id":71,"thread":"build-9"},{"duration":15,"stepId":"io.quarkus.arc.deployment.BeanArchiveProcessor#build","started":"07:05:27.382","dependents":[321,338,317,382,374,337,325,316,381,323,318,324,383,320,322],"id":315,"thread":"build-12"},{"duration":15,"stepId":"io.quarkus.vertx.http.deployment.GeneratedStaticResourcesProcessor#process","started":"07:05:27.237","dependents":[402,409,403,401],"id":192,"thread":"build-3"},{"duration":14,"stepId":"io.quarkus.virtual.threads.VirtualThreadsProcessor#setup","started":"07:05:27.258","dependents":[343,409,342,315,344,325],"id":234,"thread":"build-3"},{"duration":14,"stepId":"io.quarkus.devui.deployment.menu.ConfigurationProcessor#registerConfigs","started":"07:05:27.374","dependents":[409],"id":314,"thread":"build-11"},{"duration":14,"stepId":"io.quarkus.deployment.dev.HotDeploymentWatchedFileBuildStep#setupWatchedFileHotDeployment","started":"07:05:27.245","dependents":[405],"id":213,"thread":"build-6"},{"duration":14,"stepId":"io.quarkus.arc.deployment.ArcProcessor#quarkusMain","started":"07:05:27.209","dependents":[201,315,325],"id":93,"thread":"build-12"},{"duration":13,"stepId":"io.quarkus.rest.client.reactive.deployment.devconsole.RestClientReactiveDevUIProcessor#createJsonRPCServiceForCache","started":"07:05:27.230","dependents":[187,279],"id":158,"thread":"build-27"},{"duration":13,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#checkForBuildTimeConfigChange","started":"07:05:27.237","dependents":[409],"id":180,"thread":"build-15"},{"duration":12,"stepId":"io.quarkus.deployment.steps.BannerProcessor#recordBanner","started":"07:05:27.258","dependents":[409,326],"id":231,"thread":"build-17"},{"duration":12,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initBasicAuth","started":"07:05:27.231","dependents":[315,325],"id":156,"thread":"build-30"},{"duration":12,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#registerMetrics","started":"07:05:27.231","dependents":[409,326],"id":160,"thread":"build-25"},{"duration":11,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#addRestClientBeans","started":"07:05:27.369","dependents":[409,315],"id":310,"thread":"build-16"},{"duration":11,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#build_68c59e5d5fe4deeaa2b750dd2b2f234cee36c063","started":"07:05:27.262","dependents":[402,405,343,409,342,236,372,339,344,407,242,404],"id":235,"thread":"build-14"},{"duration":9,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#handleCustomAnnotatedMethods","started":"07:05:27.371","dependents":[311,315,325,312],"id":309,"thread":"build-24"},{"duration":9,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#setupDeployment","started":"07:05:27.614","dependents":[402,409,390,391,392,393,408,404,401],"id":389,"thread":"build-38"},{"duration":9,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#frameworkRoot","started":"07:05:27.235","dependents":[400,168,176,195,404,402,360,398,324,227,397,384,174,386,206,396],"id":161,"thread":"build-39"},{"duration":9,"stepId":"io.quarkus.arc.deployment.CommandLineArgumentsProcessor#commandLineArgs","started":"07:05:27.216","dependents":[343,342,315,344,325],"id":109,"thread":"build-18"},{"duration":8,"stepId":"io.quarkus.deployment.steps.DevModeBuildStep#watchChanges","started":"07:05:27.235","dependents":[213],"id":157,"thread":"build-29"},{"duration":8,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#build","started":"07:05:27.262","dependents":[343,409,342,344],"id":232,"thread":"build-6"},{"duration":8,"stepId":"io.quarkus.arc.deployment.ArcProcessor#setupExecutor","started":"07:05:27.262","dependents":[409],"id":233,"thread":"build-27"},{"duration":8,"stepId":"io.quarkus.arc.deployment.ArcProcessor#initialize","started":"07:05:27.402","dependents":[338,362,327],"id":325,"thread":"build-12"},{"duration":8,"stepId":"io.quarkus.deployment.steps.ApplicationInfoBuildStep#create","started":"07:05:27.235","dependents":[409],"id":154,"thread":"build-36"},{"duration":7,"stepId":"io.quarkus.deployment.steps.ClassTransformingBuildStep#handleClassTransformation","started":"07:05:27.615","dependents":[],"id":388,"thread":"build-6"},{"duration":7,"stepId":"io.quarkus.deployment.steps.CombinedIndexBuildStep#build","started":"07:05:27.358","dependents":[279,257,256,260,300,329,299,261,295,302,308,304,387,258,259,336,262,283,272,309,301,263,274,267,282,265,298,293,264,268,266,330,320,269,271,270,313,310,325,273,286,311,326,305,275,276,285,303,296],"id":255,"thread":"build-29"},{"duration":7,"stepId":"io.quarkus.arc.deployment.SyntheticBeansProcessor#initRegular","started":"07:05:27.486","dependents":[348],"id":343,"thread":"build-32"},{"duration":7,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#registerUiExtension","started":"07:05:27.249","dependents":[394],"id":206,"thread":"build-17"},{"duration":7,"stepId":"io.quarkus.arc.deployment.SyntheticBeansProcessor#initRuntime","started":"07:05:27.486","dependents":[405,409,345,347,348,346],"id":344,"thread":"build-36"},{"duration":7,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#processSmallRyeHealthConfigValues","started":"07:05:27.229","dependents":[361],"id":150,"thread":"build-7"},{"duration":7,"stepId":"io.quarkus.deployment.dev.IsolatedDevModeMain$AddApplicationClassPredicateBuildStep$1@3302d92b","started":"07:05:27.236","dependents":[381,325],"id":159,"thread":"build-6"},{"duration":7,"stepId":"io.quarkus.devui.deployment.build.BuildMetricsDevUIProcessor#additionalBeans","started":"07:05:27.216","dependents":[315,325],"id":95,"thread":"build-23"},{"duration":6,"stepId":"io.quarkus.jsonb.deployment.JsonbProcessor#generateCustomizer","started":"07:05:27.221","dependents":[315],"id":119,"thread":"build-30"},{"duration":6,"stepId":"io.quarkus.devui.deployment.menu.ContinuousTestingProcessor#createJsonRPCService","started":"07:05:27.214","dependents":[245,187,279],"id":81,"thread":"build-2"},{"duration":6,"stepId":"io.quarkus.vertx.http.deployment.StaticResourcesProcessor#collectStaticResources","started":"07:05:27.255","dependents":[372],"id":224,"thread":"build-25"},{"duration":6,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#serverSerializers","started":"07:05:27.595","dependents":[409,389,408],"id":377,"thread":"build-30"},{"duration":6,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#vertxIntegration","started":"07:05:27.215","dependents":[375,383,382,377],"id":82,"thread":"build-17"},{"duration":6,"stepId":"io.quarkus.vertx.http.deployment.GeneratedStaticResourcesProcessor#produceResources","started":"07:05:27.237","dependents":[224],"id":153,"thread":"build-13"},{"duration":6,"stepId":"io.quarkus.arc.deployment.devui.ArcDevModeApiProcessor#collectBeanInfo","started":"07:05:27.517","dependents":[363],"id":362,"thread":"build-36"},{"duration":6,"stepId":"io.quarkus.arc.deployment.ShutdownBuildSteps#addScope","started":"07:05:27.230","dependents":[322],"id":149,"thread":"build-34"},{"duration":6,"stepId":"io.quarkus.deployment.steps.NativeImageConfigBuildStep#build","started":"07:05:27.252","dependents":[409],"id":210,"thread":"build-19"},{"duration":6,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerProvidersFromAnnotations","started":"07:05:27.369","dependents":[315,356,408,308,351],"id":305,"thread":"build-36"},{"duration":6,"stepId":"io.quarkus.jsonb.deployment.JsonbProcessor#processJsonbAdapters","started":"07:05:27.208","dependents":[356,351,322],"id":48,"thread":"build-17"},{"duration":5,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createBuildTimeData","started":"07:05:27.611","dependents":[398,397],"id":386,"thread":"build-30"},{"duration":5,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#setUpDefaultMediaType","started":"07:05:27.251","dependents":[383],"id":204,"thread":"build-13"},{"duration":5,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#findAllJsonRPCMethods","started":"07:05:27.366","dependents":[397,376],"id":279,"thread":"build-12"},{"duration":5,"stepId":"io.quarkus.vertx.http.deployment.ManagementInterfaceSecurityProcessor#createManagementAuthMechHandler","started":"07:05:27.255","dependents":[409,369,223],"id":218,"thread":"build-11"},{"duration":5,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#filterMultipleVertxInstancesWarning","started":"07:05:27.206","dependents":[326,108],"id":30,"thread":"build-11"},{"duration":5,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#defineHealthRoutes","started":"07:05:27.398","dependents":[402,401],"id":324,"thread":"build-38"},{"duration":5,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#addMpClientEnricher","started":"07:05:27.205","dependents":[383],"id":28,"thread":"build-2"},{"duration":5,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#autoAddScope","started":"07:05:27.215","dependents":[322],"id":79,"thread":"build-25"},{"duration":5,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthDevUiProcessor#create","started":"07:05:27.247","dependents":[409,378,364],"id":195,"thread":"build-32"},{"duration":5,"stepId":"io.quarkus.arc.deployment.devui.ArcDevUIProcessor#registerMonitoringComponents","started":"07:05:27.250","dependents":[315,325],"id":201,"thread":"build-4"},{"duration":5,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#logging","started":"07:05:27.216","dependents":[110],"id":85,"thread":"build-28"},{"duration":4,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#setupAuthenticationMechanisms","started":"07:05:27.262","dependents":[409,315,404,325],"id":229,"thread":"build-36"},{"duration":4,"stepId":"io.quarkus.deployment.pkg.steps.JarResultBuildStep#outputTarget","started":"07:05:27.254","dependents":[221],"id":211,"thread":"build-27"},{"duration":4,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#cors","started":"07:05:27.253","dependents":[409,404],"id":209,"thread":"build-39"},{"duration":4,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#testConsoleCommand","started":"07:05:27.367","dependents":[385],"id":283,"thread":"build-5"},{"duration":4,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#createJsonRpcRouter","started":"07:05:27.592","dependents":[409],"id":376,"thread":"build-17"},{"duration":4,"stepId":"io.quarkus.arc.deployment.ConfigStaticInitBuildSteps#transformConfigProducer","started":"07:05:27.213","dependents":[325],"id":60,"thread":"build-13"},{"duration":4,"stepId":"io.quarkus.devui.deployment.logstream.LogStreamProcessor#createJsonRPCService","started":"07:05:27.223","dependents":[245,187,279],"id":122,"thread":"build-17"},{"duration":4,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#transformEndpoints","started":"07:05:27.398","dependents":[325],"id":323,"thread":"build-16"},{"duration":4,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#additionalBean","started":"07:05:27.247","dependents":[315,255,325],"id":187,"thread":"build-22"},{"duration":4,"stepId":"io.quarkus.devui.deployment.menu.ReadmeProcessor#createReadmePage","started":"07:05:27.230","dependents":[386],"id":144,"thread":"build-35"},{"duration":4,"stepId":"io.quarkus.cache.deployment.CacheProcessor#autoInjectCacheName","started":"07:05:27.223","dependents":[319,322],"id":121,"thread":"build-20"},{"duration":3,"stepId":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveProcessor#registerInvocationCallbacks","started":"07:05:27.370","dependents":[409],"id":296,"thread":"build-20"},{"duration":3,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#convertRoutes","started":"07:05:27.245","dependents":[402,401],"id":176,"thread":"build-25"},{"duration":3,"stepId":"io.quarkus.vertx.http.deployment.devmode.ArcDevProcessor#registerRoutes","started":"07:05:27.517","dependents":[402,409,403,365,401],"id":360,"thread":"build-32"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#checkMixingStacks","started":"07:05:27.253","dependents":[405],"id":203,"thread":"build-29"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#scanResources","started":"07:05:27.367","dependents":[281,389,374,325,381,323,284,309,290,383,292,287,289,288],"id":278,"thread":"build-14"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#recordableConstructor","started":"07:05:27.223","dependents":[409],"id":116,"thread":"build-29"},{"duration":3,"stepId":"io.quarkus.rest.client.reactive.jsonb.deployment.RestClientReactiveJsonbProcessor#additionalProviders","started":"07:05:27.204","dependents":[375,383,382,377],"id":11,"thread":"build-8"},{"duration":3,"stepId":"io.quarkus.devui.deployment.menu.DependenciesProcessor#createAppDeps","started":"07:05:27.247","dependents":[386],"id":179,"thread":"build-29"},{"duration":3,"stepId":"io.quarkus.arc.deployment.AutoProducerMethodsProcessor#annotationTransformer","started":"07:05:27.398","dependents":[325],"id":321,"thread":"build-11"},{"duration":3,"stepId":"io.quarkus.deployment.steps.BlockingOperationControlBuildStep#blockingOP","started":"07:05:27.247","dependents":[409],"id":183,"thread":"build-19"},{"duration":3,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#gatherMvnpmJars","started":"07:05:27.251","dependents":[400,398],"id":198,"thread":"build-11"},{"duration":3,"stepId":"io.quarkus.deployment.ExtensionLoader#config","started":"07:05:27.220","dependents":[321,105,192,249,238,242,254,118,295,386,123,355,218,206,409,175,127,362,182,394,150,402,243,128,139,272,156,160,143,154,189,389,180,157,319,161,148,407,404,293,406,163,167,229,171,346,270,369,313,195,310,173,326,305,383,340,396,186,260,370,363,341,251,365,201,250,356,366,181,308,405,335,194,204,347,391,388,202,252,209,333,360,211,237,400,196,345,200,390,315,282,361,217,208,212,324,372,231,234,235,216,246,219,220,325,381,214,240,215,226],"id":96,"thread":"build-14"},{"duration":3,"stepId":"io.quarkus.vertx.deployment.EventBusCodecProcessor#registerCodecs","started":"07:05:27.398","dependents":[339,408],"id":320,"thread":"build-36"},{"duration":3,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#registerAuthMechanismSelectionInterceptor","started":"07:05:27.367","dependents":[333,409,286,291],"id":282,"thread":"build-6"},{"duration":3,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerCompressionInterceptors","started":"07:05:27.233","dependents":[408],"id":151,"thread":"build-17"},{"duration":3,"stepId":"io.quarkus.devui.deployment.build.BuildMetricsDevUIProcessor#create","started":"07:05:27.228","dependents":[409],"id":129,"thread":"build-40"},{"duration":3,"stepId":"io.quarkus.deployment.steps.ThreadPoolSetup#createExecutor","started":"07:05:27.257","dependents":[222,409,232,225,233,404,235],"id":217,"thread":"build-13"},{"duration":3,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#currentContextFactory","started":"07:05:27.260","dependents":[409,366],"id":226,"thread":"build-20"},{"duration":3,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#securityExceptionMappers","started":"07:05:27.214","dependents":[311],"id":58,"thread":"build-14"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#defaultUnwrappedException","started":"07:05:27.212","dependents":[311],"id":51,"thread":"build-22"},{"duration":2,"stepId":"io.quarkus.arc.deployment.ArcProcessor#loggerProducer","started":"07:05:27.219","dependents":[315,325],"id":84,"thread":"build-20"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#contextInjection","started":"07:05:27.203","dependents":[315,319,322,325],"id":6,"thread":"build-6"},{"duration":2,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#setupConfigOverride","started":"07:05:27.216","dependents":[],"id":63,"thread":"build-20"},{"duration":2,"stepId":"io.quarkus.cache.deployment.devui.CacheDevUiProcessor#createJsonRPCServiceForCache","started":"07:05:27.206","dependents":[187,279],"id":19,"thread":"build-14"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#fileHandling","started":"07:05:27.218","dependents":[383,382,377],"id":78,"thread":"build-7"},{"duration":2,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupLoggingStaticInit","started":"07:05:27.249","dependents":[409],"id":186,"thread":"build-27"},{"duration":2,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigRootsAsBeans","started":"07:05:27.259","dependents":[343,342,344],"id":219,"thread":"build-36"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#createHttpAuthenticationHandler","started":"07:05:27.259","dependents":[409,370,229],"id":220,"thread":"build-4"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#setupEndpoints","started":"07:05:27.592","dependents":[375,383,408,382,377],"id":374,"thread":"build-49"},{"duration":2,"stepId":"io.quarkus.mutiny.deployment.MutinyProcessor#runtimeInit","started":"07:05:27.261","dependents":[409],"id":225,"thread":"build-11"},{"duration":2,"stepId":"io.quarkus.deployment.steps.DevServicesConfigBuildStep#setup","started":"07:05:27.371","dependents":[405,314,361,297],"id":294,"thread":"build-29"},{"duration":2,"stepId":"io.quarkus.devui.deployment.menu.ContinuousTestingProcessor#continuousTestingState","started":"07:05:27.592","dependents":[409],"id":373,"thread":"build-38"},{"duration":2,"stepId":"io.quarkus.netty.deployment.NettyProcessor#setNettyMachineId","started":"07:05:27.226","dependents":[409],"id":124,"thread":"build-37"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initMtlsClientAuth","started":"07:05:27.231","dependents":[315,325],"id":139,"thread":"build-28"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#buildSetup","started":"07:05:27.205","dependents":[409],"id":12,"thread":"build-10"},{"duration":2,"stepId":"io.quarkus.arc.deployment.AutoAddScopeProcessor#annotationTransformer","started":"07:05:27.399","dependents":[356,351,325],"id":322,"thread":"build-12"},{"duration":2,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#startTesting","started":"07:05:27.334","dependents":[405,326],"id":249,"thread":"build-38"},{"duration":2,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#overrideContextInternalInterfaceToAddSafeGuards","started":"07:05:27.216","dependents":[388],"id":64,"thread":"build-22"},{"duration":2,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#handleApplication","started":"07:05:27.371","dependents":[389,374,298,312,381,300,311,299,383,408,301,302,304,377,303],"id":293,"thread":"build-38"},{"duration":2,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#unremovableBeans","started":"07:05:27.224","dependents":[356,351],"id":115,"thread":"build-27"},{"duration":2,"stepId":"io.quarkus.netty.deployment.NettyProcessor#registerEventLoopBeans","started":"07:05:27.274","dependents":[343,409,342,344],"id":236,"thread":"build-6"},{"duration":2,"stepId":"io.quarkus.arc.deployment.staticmethods.InterceptedStaticMethodsProcessor#collectInterceptedStaticMethods","started":"07:05:27.482","dependents":[338,356,351,371],"id":337,"thread":"build-36"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.devmode.NotFoundProcessor#resourceNotFoundDataAvailable","started":"07:05:27.230","dependents":[315,325],"id":133,"thread":"build-18"},{"duration":2,"stepId":"io.quarkus.jsonp.deployment.JsonpProcessor#build","started":"07:05:27.209","dependents":[409,408],"id":37,"thread":"build-13"},{"duration":2,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#watchConfigFiles","started":"07:05:27.206","dependents":[213],"id":15,"thread":"build-4"},{"duration":2,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#generateBuilders","started":"07:05:27.519","dependents":[408],"id":361,"thread":"build-15"},{"duration":2,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#finalizeRouter","started":"07:05:27.754","dependents":[405,409,406],"id":404,"thread":"build-49"},{"duration":2,"stepId":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveProcessor#initializeStorkFilter","started":"07:05:27.219","dependents":[315,408,255,325],"id":89,"thread":"build-33"},{"duration":2,"stepId":"io.quarkus.arc.deployment.devui.ArcDevUIProcessor#createJsonRPCService","started":"07:05:27.230","dependents":[187,279],"id":136,"thread":"build-36"},{"duration":2,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setUpDefaultLogCleanupFilters","started":"07:05:27.223","dependents":[361],"id":108,"thread":"build-28"},{"duration":2,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setUpDefaultLevels","started":"07:05:27.223","dependents":[326,361],"id":110,"thread":"build-34"},{"duration":2,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#createVertxContextHandlers","started":"07:05:27.253","dependents":[217,409,225],"id":202,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#integrateEagerSecurity","started":"07:05:27.372","dependents":[381],"id":295,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#deprioritizeLegacyProviders","started":"07:05:27.216","dependents":[383,377],"id":59,"thread":"build-7"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveDevModeProcessor#openCommand","started":"07:05:27.614","dependents":[385],"id":384,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.devui.deployment.menu.DependenciesProcessor#createBuildTimeActions","started":"07:05:27.248","dependents":[245],"id":177,"thread":"build-4"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#annotationsTransformer","started":"07:05:27.230","dependents":[325],"id":130,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#healthCheck","started":"07:05:27.228","dependents":[315,325],"id":127,"thread":"build-23"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#buildTimeRunTimeConfig","started":"07:05:27.258","dependents":[408,361],"id":216,"thread":"build-22"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#validateCacheAnnotationsAndProduceCacheNames","started":"07:05:27.481","dependents":[340,365],"id":336,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.jsonb.common.deployment.ResteasyReactiveJsonbCommonProcessor#beans","started":"07:05:27.206","dependents":[315,325],"id":8,"thread":"build-7"},{"duration":1,"stepId":"io.quarkus.jsonb.deployment.JsonbProcessor#build","started":"07:05:27.370","dependents":[315,408,325],"id":285,"thread":"build-17"},{"duration":1,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#setupExceptionHandler","started":"07:05:27.334","dependents":[253],"id":248,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ProfileBuildStep#defaultProfile","started":"07:05:27.223","dependents":[361],"id":103,"thread":"build-35"},{"duration":1,"stepId":"io.quarkus.netty.deployment.NettyProcessor#registerQualifiers","started":"07:05:27.223","dependents":[315,325],"id":104,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateConfigMappingsInjectionPoints","started":"07:05:27.517","dependents":[359,361],"id":356,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.deployment.ide.IdeProcessor#effectiveIde","started":"07:05:27.291","dependents":[248,386,244,253],"id":243,"thread":"build-6"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setMinLevelForInitialConfigurator","started":"07:05:27.235","dependents":[409],"id":148,"thread":"build-18"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ClassPathSystemPropBuildStep#set","started":"07:05:27.253","dependents":[409],"id":199,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#unremovableBeans","started":"07:05:27.372","dependents":[356,351],"id":292,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setProperty","started":"07:05:27.223","dependents":[409],"id":99,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.cache.deployment.devui.CacheDevUiProcessor#create","started":"07:05:27.251","dependents":[378,364],"id":193,"thread":"build-15"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setUpDarkeningDefault","started":"07:05:27.223","dependents":[361],"id":106,"thread":"build-7"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#registerSyntheticObservers","started":"07:05:27.494","dependents":[350,349,356,408,351,365],"id":348,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#buildResourceInterceptors","started":"07:05:27.381","dependents":[381,323,389,315,325],"id":312,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#build_9d6b7122fb368970c50c3a870d1f672392cd8afb","started":"07:05:27.213","dependents":[408,210],"id":50,"thread":"build-18"},{"duration":1,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#sharedStateListener","started":"07:05:27.217","dependents":[249],"id":65,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.arc.deployment.SplitPackageProcessor#splitPackageDetection","started":"07:05:27.357","dependents":[365],"id":251,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.stork.deployment.SmallRyeStorkProcessor#unremoveableBeans","started":"07:05:27.219","dependents":[356,351],"id":83,"thread":"build-13"},{"duration":1,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupStackTraceFormatter","started":"07:05:27.357","dependents":[326],"id":253,"thread":"build-6"},{"duration":1,"stepId":"io.quarkus.netty.deployment.NettyProcessor#cleanupUnsafeLog","started":"07:05:27.213","dependents":[326,108],"id":44,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#registerContextPropagation","started":"07:05:27.227","dependents":[188],"id":123,"thread":"build-28"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#unremovableAsyncObserverExceptionHandlers","started":"07:05:27.230","dependents":[356,351],"id":131,"thread":"build-33"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateStaticInitConfigProperty","started":"07:05:27.517","dependents":[409,408],"id":358,"thread":"build-11"},{"duration":1,"stepId":"io.quarkiverse.caffeine.deployment.devui.CaffeineDevUIProcessor#createCard","started":"07:05:27.231","dependents":[378,364],"id":134,"thread":"build-9"},{"duration":1,"stepId":"io.quarkus.deployment.pkg.steps.FileSystemResourcesBuildStep#notNormalMode","started":"07:05:27.260","dependents":[],"id":221,"thread":"build-19"},{"duration":1,"stepId":"io.quarkus.deployment.steps.MainClassBuildStep#mainClassBuildStep","started":"07:05:27.366","dependents":[388],"id":260,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#setupRequestCollectingFilter","started":"07:05:27.233","dependents":[312],"id":140,"thread":"build-41"},{"duration":1,"stepId":"io.quarkus.stork.deployment.SmallRyeStorkProcessor#initializeStork","started":"07:05:27.494","dependents":[409],"id":347,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.arc.deployment.StartupBuildSteps#unremovableBeans","started":"07:05:27.219","dependents":[356,351],"id":75,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateRuntimeConfigProperty","started":"07:05:27.517","dependents":[409,408],"id":357,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#detectBasicAuthImplicitlyRequired","started":"07:05:27.482","dependents":[409],"id":333,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#restClientAnnotationsTransformer","started":"07:05:27.211","dependents":[310],"id":35,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.StaticResourcesProcessor#runtimeInit","started":"07:05:27.592","dependents":[409,404],"id":372,"thread":"build-39"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#initializeRouter","started":"07:05:27.753","dependents":[409,403,404],"id":402,"thread":"build-39"},{"duration":1,"stepId":"io.quarkus.deployment.steps.DevServicesConfigBuildStep#deprecated","started":"07:05:27.213","dependents":[294],"id":49,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.devui.deployment.welcome.WelcomeProcessor#createWelcomePages","started":"07:05:27.610","dependents":[386],"id":380,"thread":"build-38"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveVertxWebSocketIntegrationProcessor#scanner","started":"07:05:27.211","dependents":[381],"id":41,"thread":"build-21"},{"duration":1,"stepId":"io.quarkus.netty.deployment.NettyProcessor#build","started":"07:05:27.245","dependents":[408,210],"id":171,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#shutdownListener","started":"07:05:27.257","dependents":[406],"id":212,"thread":"build-15"},{"duration":1,"stepId":"io.quarkus.deployment.steps.MainClassBuildStep#applicationReflection","started":"07:05:27.209","dependents":[408],"id":22,"thread":"build-4"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.devservices.DevServicesRestClientHttpProxyProcessor#registerDefaultProvider","started":"07:05:27.226","dependents":[277],"id":120,"thread":"build-13"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.devconsole.RestClientReactiveDevUIProcessor#create","started":"07:05:27.211","dependents":[378,364],"id":34,"thread":"build-14"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ReflectiveBeanClassesProcessor#implicitReflectiveBeanClasses","started":"07:05:27.482","dependents":[365],"id":332,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#registerHealthUiHandler","started":"07:05:27.639","dependents":[402,409,401],"id":396,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#collectEventConsumers","started":"07:05:27.481","dependents":[348,339],"id":334,"thread":"build-16"},{"duration":1,"stepId":"io.quarkus.tls.CertificatesProcessor#initializeCertificate","started":"07:05:27.485","dependents":[343,409,342,344,404],"id":341,"thread":"build-11"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ObservabilityProcessor#preAuthFailureFilter","started":"07:05:27.623","dependents":[409,393,404],"id":392,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#setMinimalNettyMaxOrderSize","started":"07:05:27.216","dependents":[173,171],"id":56,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#setMtlsCertificateRoleProperties","started":"07:05:27.251","dependents":[409],"id":194,"thread":"build-36"},{"duration":1,"stepId":"io.quarkus.deployment.ide.IdeProcessor#detectIdeFiles","started":"07:05:27.206","dependents":[243],"id":9,"thread":"build-6"},{"duration":1,"stepId":"io.quarkus.stork.deployment.SmallRyeStorkProcessor#checkThatTheKubernetesExtensionIsUsedWhenKubernetesServiceDiscoveryInOnTheClasspath","started":"07:05:27.255","dependents":[347],"id":207,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#createSynthBeansForConfiguredInjectionPoints","started":"07:05:27.481","dependents":[343,409,342,344],"id":331,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.devui.deployment.menu.EndpointsProcessor#createJsonRPCService","started":"07:05:27.206","dependents":[187,279],"id":10,"thread":"build-13"},{"duration":1,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#announceFeature","started":"07:05:27.236","dependents":[409],"id":152,"thread":"build-42"},{"duration":1,"stepId":"io.quarkus.deployment.steps.RegisterForReflectionBuildStep#build","started":"07:05:27.366","dependents":[387,408],"id":261,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#responseHeaderSupport","started":"07:05:27.214","dependents":[381],"id":54,"thread":"build-23"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#exposeCustomScopeNames","started":"07:05:27.223","dependents":[321,335,201,125,315,149,310,322,325],"id":102,"thread":"build-25"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ReflectiveHierarchyStep#build","started":"07:05:27.615","dependents":[408],"id":387,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ShutdownListenerBuildStep#setupShutdown","started":"07:05:27.757","dependents":[409],"id":406,"thread":"build-39"},{"duration":1,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#registerSafeDuplicatedContextInterceptor","started":"07:05:27.219","dependents":[315,325],"id":76,"thread":"build-30"},{"duration":1,"stepId":"io.quarkus.arc.deployment.WrongAnnotationUsageProcessor#detect","started":"07:05:27.481","dependents":[365],"id":335,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#reinitializeClassesForNetty","started":"07:05:27.206","dependents":[210],"id":7,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#validateConfigPropertiesInjectionPoints","started":"07:05:27.517","dependents":[359],"id":355,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#mapPageBuildTimeData","started":"07:05:27.525","dependents":[397],"id":364,"thread":"build-32"},{"duration":1,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#unknownConfigFiles","started":"07:05:27.357","dependents":[409],"id":252,"thread":"build-38"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.jsonb.common.deployment.ResteasyReactiveJsonbCommonProcessor#registerVertxJsonSupport","started":"07:05:27.219","dependents":[119],"id":74,"thread":"build-22"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ArcProcessor#initializeContainer","started":"07:05:27.589","dependents":[409,367],"id":366,"thread":"build-37"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#addRoutingCtxToSecurityEventsForCdiBeans","started":"07:05:27.255","dependents":[409],"id":205,"thread":"build-22"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForExceptionMappers","started":"07:05:27.381","dependents":[389,315,408,325],"id":311,"thread":"build-12"},{"duration":1,"stepId":"io.quarkus.arc.deployment.devui.ArcDevUIProcessor#pages","started":"07:05:27.524","dependents":[378,364],"id":363,"thread":"build-15"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.devmode.NotFoundProcessor#routeNotFound","started":"07:05:27.754","dependents":[409],"id":403,"thread":"build-38"},{"duration":1,"stepId":"io.quarkus.arc.deployment.ShutdownBuildSteps#unremovableBeans","started":"07:05:27.219","dependents":[356,351],"id":77,"thread":"build-27"},{"duration":1,"stepId":"io.quarkus.resteasy.reactive.server.deployment.devui.ResteasyReactiveDevUIProcessor#createJsonRPCService","started":"07:05:27.219","dependents":[187,279],"id":80,"thread":"build-26"},{"duration":1,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#build","started":"07:05:27.483","dependents":[405,409,347,341],"id":339,"thread":"build-24"},{"duration":1,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#openSocket","started":"07:05:27.757","dependents":[409,408],"id":407,"thread":"build-49"},{"duration":1,"stepId":"io.quarkus.arc.deployment.AutoInjectFieldProcessor#annotationTransformer","started":"07:05:27.399","dependents":[325],"id":319,"thread":"build-3"},{"duration":1,"stepId":"io.quarkus.cache.deployment.CacheProcessor#configureCacheManagerSyntheticBean","started":"07:05:27.483","dependents":[343,409,342,344],"id":340,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#unlessBuildProperty","started":"07:05:27.368","dependents":[280,293],"id":271,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#registerVerticleClasses","started":"07:05:27.367","dependents":[408],"id":265,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#findEnablementStereotypes","started":"07:05:27.368","dependents":[271,275,276,274],"id":264,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.JniProcessor#setupJni","started":"07:05:27.226","dependents":[210],"id":118,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#addDefaultAuthFailureHandler","started":"07:05:27.624","dependents":[409,404],"id":393,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#additionalBeans","started":"07:05:27.376","dependents":[315,408,325],"id":307,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#runtimeConfiguration","started":"07:05:27.623","dependents":[409,391],"id":390,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#produceEagerSecurityInterceptorStorage","started":"07:05:27.372","dependents":[343,409,342,344],"id":291,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#installCliCommands","started":"07:05:27.615","dependents":[405],"id":385,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#cleanupVertxWarnings","started":"07:05:27.213","dependents":[326,108],"id":43,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#additionalBeans","started":"07:05:27.203","dependents":[315,325],"id":1,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.deployment.SecureRandomProcessor#registerReflectiveMethods","started":"07:05:27.226","dependents":[408],"id":117,"thread":"build-36"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForParamConverters_dcdfdd2a310a09abe5ee3f0ed2b2bc49f36f3d07","started":"07:05:27.375","dependents":[381,389,315,408,325],"id":306,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.CollectionClassProcessor#setupCollectionClasses","started":"07:05:27.223","dependents":[408],"id":97,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CurateOutcomeBuildStep#removeResources","started":"07:05:27.254","dependents":[388],"id":196,"thread":"build-22"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#vetoMPConfigProperties","started":"07:05:27.203","dependents":[325],"id":2,"thread":"build-4"},{"duration":0,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#registerBean","started":"07:05:27.214","dependents":[315,325],"id":46,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.credentials.CredentialsProcessor#unremoveable","started":"07:05:27.224","dependents":[356,351],"id":101,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#mapDeploymentMethods","started":"07:05:27.293","dependents":[279,376],"id":245,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.arc.deployment.HotDeploymentConfigBuildStep#startup","started":"07:05:27.211","dependents":[40],"id":31,"thread":"build-18"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.EndpointsProcessor#createEndpointsPage","started":"07:05:27.248","dependents":[386],"id":174,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.deployment.steps.AdditionalClassLoaderResourcesBuildStep#appendAdditionalClassloaderResources","started":"07:05:27.220","dependents":[255],"id":72,"thread":"build-34"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createKnownInternalImportMap","started":"07:05:27.245","dependents":[398],"id":168,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.JaxrsMethodsProcessor#jaxrsMethods","started":"07:05:27.209","dependents":[308],"id":23,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#unremovableBeans","started":"07:05:27.225","dependents":[356,351],"id":112,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ShutdownBuildSteps#registerShutdownObservers","started":"07:05:27.495","dependents":[351],"id":349,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.deployment.index.ApplicationArchiveBuildStep#addConfiguredIndexedDependencies","started":"07:05:27.257","dependents":[250],"id":208,"thread":"build-36"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#handleSseEventFilter","started":"07:05:27.398","dependents":[408],"id":316,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#quarkusApplication","started":"07:05:27.368","dependents":[315,325],"id":268,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.execannotations.ExecutionModelAnnotationsProcessor#check","started":"07:05:27.376","dependents":[],"id":308,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#activateSslNativeSupport","started":"07:05:27.218","dependents":[210],"id":66,"thread":"build-31"},{"duration":0,"stepId":"io.quarkus.arc.deployment.init.InitializationTaskProcessor#startApplicationInitializer","started":"07:05:27.494","dependents":[409],"id":346,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#marker","started":"07:05:27.207","dependents":[250],"id":14,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerProviderBeans","started":"07:05:27.368","dependents":[315,325],"id":266,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#perClassExceptionMapperSupport","started":"07:05:27.372","dependents":[325],"id":288,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.arc.deployment.AutoInjectFieldProcessor#autoInjectQualifiers","started":"07:05:27.398","dependents":[319,322],"id":317,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#registerSecurityInterceptors","started":"07:05:27.254","dependents":[315,325],"id":197,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#determineRegisteredRestClients","started":"07:05:27.368","dependents":[272,310],"id":270,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForFeatures","started":"07:05:27.375","dependents":[389,307],"id":301,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#addAllWriteableMarker","started":"07:05:27.595","dependents":[388],"id":375,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.logging.LoggingWithPanacheProcessor#process","started":"07:05:27.369","dependents":[388],"id":273,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#scanForParameterContainers","started":"07:05:27.374","dependents":[381,383],"id":300,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.deployment.console.ConsoleProcessor#missingDevUIMessageHandler","started":"07:05:27.334","dependents":[405],"id":247,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.ManagementInterfaceSecurityProcessor#setupAuthenticationMechanisms","started":"07:05:27.262","dependents":[409,315,404,325],"id":223,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.EventConsumerMethodsProcessor#eventConsumerMethods","started":"07:05:27.215","dependents":[308],"id":53,"thread":"build-26"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.devui.ResteasyReactiveDevUIProcessor#createPages","started":"07:05:27.211","dependents":[378,364],"id":33,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#preventLoggerContention","started":"07:05:27.222","dependents":[110],"id":92,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.devconsole.RestClientReactiveDevUIProcessor#beans","started":"07:05:27.212","dependents":[315,325],"id":39,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.deployment.ForkJoinPoolProcessor#setProperty","started":"07:05:27.233","dependents":[409],"id":137,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.GeneratedStaticResourcesProcessor#devMode","started":"07:05:27.236","dependents":[153,192,213],"id":147,"thread":"build-28"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#compressionSupport","started":"07:05:27.260","dependents":[381],"id":215,"thread":"build-41"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#generateCustomProducer","started":"07:05:27.372","dependents":[315,325],"id":289,"thread":"build-21"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#loadAllBuildTimeTemplates","started":"07:05:27.732","dependents":[400],"id":399,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#asyncSupport","started":"07:05:27.230","dependents":[381],"id":126,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#featureAndCapability","started":"07:05:27.219","dependents":[409,184],"id":70,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#responseStatusSupport","started":"07:05:27.204","dependents":[381],"id":4,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#unlessBuildProfile","started":"07:05:27.370","dependents":[280,293],"id":276,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.recording.substitutions.AdditionalSubstitutionsBuildStep#additionalSubstitutions","started":"07:05:27.224","dependents":[409],"id":107,"thread":"build-23"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CapabilityAggregationStep#provideCapabilities","started":"07:05:27.249","dependents":[184],"id":178,"thread":"build-31"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForDynamicFeatures","started":"07:05:27.375","dependents":[389,307],"id":304,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#config","started":"07:05:27.211","dependents":[361],"id":38,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.devservices.DevServicesRestClientHttpProxyProcessor#determineRequiredProxies","started":"07:05:27.369","dependents":[277],"id":272,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#ifBuildProperty","started":"07:05:27.369","dependents":[280,293],"id":274,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#feature","started":"07:05:27.218","dependents":[409],"id":68,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.deployment.recording.AnnotationProxyBuildStep#build","started":"07:05:27.282","dependents":[339],"id":239,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#registerVerticleClasses","started":"07:05:27.366","dependents":[408],"id":257,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.arc.deployment.LookupConditionsProcessor#suppressConditionsGenerators","started":"07:05:27.398","dependents":[325],"id":318,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ClassPathSystemPropBuildStep#produce","started":"07:05:27.251","dependents":[199],"id":185,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#brandingFiles","started":"07:05:27.234","dependents":[213],"id":143,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#generateConfigProperties","started":"07:05:27.367","dependents":[329,356,408,330,355],"id":267,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.StartupBuildSteps#addScope","started":"07:05:27.229","dependents":[322],"id":125,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ExecutorServiceProcessor#executorServiceBean","started":"07:05:27.261","dependents":[343,342,344],"id":222,"thread":"build-41"},{"duration":0,"stepId":"io.quarkus.arc.deployment.LifecycleEventsBuildStep#startupEvent","started":"07:05:27.757","dependents":[409,407],"id":405,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.ConstructorPropertiesProcessor#build","started":"07:05:27.367","dependents":[408],"id":263,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.devui.deployment.ide.IdeProcessor#createJsonRPCService","started":"07:05:27.293","dependents":[245],"id":244,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initFormAuth","started":"07:05:27.259","dependents":[402,409,315,325,401],"id":214,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#pathInterfaceImpls","started":"07:05:27.372","dependents":[315,325],"id":287,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#configureHandlers","started":"07:05:27.624","dependents":[409],"id":391,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#notifyBeanContainerListeners","started":"07:05:27.591","dependents":[409,368],"id":367,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.BuildMetricsProcessor#createBuildMetricsPages","started":"07:05:27.223","dependents":[386],"id":98,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ConfigurationProcessor#createConfigurationPages","started":"07:05:27.374","dependents":[386],"id":297,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForInterceptors","started":"07:05:27.375","dependents":[312],"id":302,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#cacheControlSupport","started":"07:05:27.209","dependents":[381],"id":27,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.cache.deployment.CacheProcessor#enhanceRestClientMethods","started":"07:05:27.368","dependents":[388,356,351],"id":269,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.vertx.deployment.VertxProcessor#registerBean","started":"07:05:27.211","dependents":[315,325],"id":32,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.deployment.ExtensionLoader#booleanSupplierFactory","started":"07:05:27.218","dependents":[178],"id":62,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ContinuousTestingProcessor#createContinuousTestingPages","started":"07:05:27.222","dependents":[386],"id":88,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigStaticInitBuildSteps#registerBeans","started":"07:05:27.208","dependents":[315,325],"id":20,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerProvidersInstances","started":"07:05:27.366","dependents":[305],"id":256,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#shutdownHealthCheck","started":"07:05:27.244","dependents":[315,325],"id":163,"thread":"build-17"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#shouldNotRemoveHttpServerOptionsCustomizers","started":"07:05:27.209","dependents":[356,351],"id":26,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ReflectiveHierarchyStep#ignoreJavaClassWarnings","started":"07:05:27.218","dependents":[387],"id":67,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#suppressNonRuntimeConfigChanged","started":"07:05:27.236","dependents":[180],"id":145,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.devui.deployment.BuildTimeContentProcessor#createRelocationMap","started":"07:05:27.219","dependents":[398],"id":73,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ExtensionsProcessor#createExtensionsPages","started":"07:05:27.610","dependents":[386],"id":379,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.arc.deployment.SyntheticBeansProcessor#initStatic","started":"07:05:27.486","dependents":[409,348],"id":342,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.arc.deployment.UnremovableAnnotationsProcessor#unremovableBeans","started":"07:05:27.213","dependents":[356,351],"id":42,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#searchForProviders","started":"07:05:27.252","dependents":[250],"id":191,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.devui.deployment.logstream.LogStreamProcessor#additionalBean","started":"07:05:27.225","dependents":[315,325],"id":111,"thread":"build-35"},{"duration":0,"stepId":"io.quarkus.deployment.execannotations.ExecutionModelAnnotationsProcessor#devuiJsonRpcServices","started":"07:05:27.216","dependents":[308],"id":57,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#handleClassLevelExceptionMappers","started":"07:05:27.372","dependents":[381,408],"id":290,"thread":"build-5"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#registerHttpAuthMechanismAnnotations","started":"07:05:27.214","dependents":[282],"id":52,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.smallrye.health.deployment.SmallRyeHealthProcessor#processSmallRyeHealthRuntimeConfig","started":"07:05:27.494","dependents":[409],"id":345,"thread":"build-32"},{"duration":0,"stepId":"io.quarkus.arc.deployment.TestsAsBeansProcessor#testAnnotations","started":"07:05:27.209","dependents":[201,315,325],"id":25,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigClasses","started":"07:05:27.519","dependents":[409],"id":359,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.ReadmeProcessor#createJsonRPCServiceForCache","started":"07:05:27.209","dependents":[187,279],"id":24,"thread":"build-18"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#resourceIndex","started":"07:05:27.366","dependents":[315,278],"id":258,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.staticmethods.InterceptedStaticMethodsProcessor#callInitializer","started":"07:05:27.592","dependents":[409],"id":371,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#beanDefiningAnnotations","started":"07:05:27.226","dependents":[201,315,325],"id":113,"thread":"build-39"},{"duration":0,"stepId":"io.quarkus.netty.deployment.NettyProcessor#limitArenaSize","started":"07:05:27.247","dependents":[409],"id":173,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#validateAsyncObserverExceptionHandlers","started":"07:05:27.517","dependents":[365],"id":354,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.ManagementInterfaceSecurityProcessor#initializeAuthMechanismHandler","started":"07:05:27.592","dependents":[409],"id":369,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.arc.deployment.TestsAsBeansProcessor#testClassBeans","started":"07:05:27.222","dependents":[315,325],"id":90,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerHeaderFactoryBeans","started":"07:05:27.366","dependents":[315,325],"id":259,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.cache.deployment.CacheProcessor#feature","started":"07:05:27.207","dependents":[409],"id":13,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#httpRoot","started":"07:05:27.230","dependents":[400,403,227,384,176,404],"id":128,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.deployment.steps.PreloadClassesBuildStep#registerPreInitClasses","started":"07:05:27.209","dependents":[],"id":21,"thread":"build-10"},{"duration":0,"stepId":"io.quarkus.devui.deployment.DevUIProcessor#createAllRoutes","started":"07:05:27.639","dependents":[400],"id":395,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.smallrye.context.deployment.SmallRyeContextPropagationProcessor#transformInjectionPoint","started":"07:05:27.208","dependents":[325],"id":16,"thread":"build-16"},{"duration":0,"stepId":"io.quarkus.deployment.steps.BannerProcessor#watchBannerChanges","started":"07:05:27.224","dependents":[213],"id":105,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#additionalBeans","started":"07:05:27.203","dependents":[315,325],"id":3,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#ifBuildProfile","started":"07:05:27.369","dependents":[280,293],"id":275,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.deployment.dev.testing.TestTracingProcessor#handle","started":"07:05:27.216","dependents":[326,108],"id":55,"thread":"build-27"},{"duration":0,"stepId":"io.quarkus.deployment.dev.ConfigureDisableInstrumentationBuildStep#configure","started":"07:05:27.212","dependents":[405],"id":40,"thread":"build-23"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerCustomConfigBeanTypes","started":"07:05:27.481","dependents":[343,342,408,344],"id":328,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.arc.deployment.BuildTimeEnabledProcessor#conditionTransformer","started":"07:05:27.370","dependents":[325],"id":280,"thread":"build-3"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CurateOutcomeBuildStep#curateOutcome","started":"07:05:27.245","dependents":[196,245,279,203,388,179,184,238,394,177,364,178,250,397,386,185,198,378,380,199,193],"id":167,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#doNotRemoveVertxOptionsCustomizers","started":"07:05:27.211","dependents":[356,351],"id":36,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.devui.deployment.build.BuildMetricsDevUIProcessor#createJsonRPCService","started":"07:05:27.224","dependents":[187,279],"id":100,"thread":"build-37"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigMappingsBean","started":"07:05:27.482","dependents":[348],"id":330,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#releaseConfigOnShutdown","started":"07:05:27.254","dependents":[409],"id":200,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.arc.deployment.StartupBuildSteps#registerStartupObservers","started":"07:05:27.495","dependents":[351],"id":350,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.deployment.pkg.steps.NativeImageBuildStep#ignoreBuildPropertyChanges","started":"07:05:27.214","dependents":[180],"id":47,"thread":"build-21"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.jsonb.deployment.RestClientReactiveJsonbProcessor#feature","started":"07:05:27.210","dependents":[409],"id":29,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#launchMode","started":"07:05:27.222","dependents":[315,325],"id":91,"thread":"build-34"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ObserverValidationProcessor#validateApplicationObserver","started":"07:05:27.517","dependents":[365],"id":352,"thread":"build-11"},{"duration":0,"stepId":"io.quarkus.deployment.steps.CapabilityAggregationStep#aggregateCapabilities","started":"07:05:27.250","dependents":[247,387,191,389,190,203,282,310,407,220,325,381,311,197,383,392,261,224,295,205,229,218,207],"id":184,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.arc.deployment.LoggingBeanSupportProcessor#discoveredComponents","started":"07:05:27.218","dependents":[201,315,325],"id":61,"thread":"build-30"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForContextResolvers","started":"07:05:27.373","dependents":[389,315,408,325],"id":298,"thread":"build-6"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.devservices.DevServicesRestClientHttpProxyProcessor#start","started":"07:05:27.369","dependents":[294],"id":277,"thread":"build-2"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#unremovableContextMethodParams","started":"07:05:27.371","dependents":[356,351],"id":281,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveScanningProcessor#scanForParamConverters_59e3169e3a646b7fcf3083416f558434b73816c5","started":"07:05:27.375","dependents":[306],"id":299,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#additionalAsyncTypeMethodScanners","started":"07:05:27.208","dependents":[381],"id":18,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.arc.deployment.HotDeploymentConfigBuildStep#configFile","started":"07:05:27.223","dependents":[213],"id":94,"thread":"build-33"},{"duration":0,"stepId":"io.quarkus.deployment.logging.LoggingResourceProcessor#setupLogFilters","started":"07:05:27.222","dependents":[326,108],"id":87,"thread":"build-29"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.VertxHttpProcessor#notFoundRoutes","started":"07:05:27.753","dependents":[403],"id":401,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveCDIProcessor#subResourcesAsBeans","started":"07:05:27.371","dependents":[315,356,351,325],"id":284,"thread":"build-12"},{"duration":0,"stepId":"io.quarkus.devui.deployment.menu.DevServicesProcessor#createDevServicesPages","started":"07:05:27.226","dependents":[386],"id":114,"thread":"build-33"},{"duration":0,"stepId":"io.quarkus.deployment.SslProcessor#setupNativeSsl","started":"07:05:27.250","dependents":[210],"id":181,"thread":"build-31"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#additionalReflection","started":"07:05:27.614","dependents":[408],"id":382,"thread":"build-49"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#providersFromClasspath","started":"07:05:27.213","dependents":[375,383,382,377],"id":45,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#initializeAuthenticationHandler","started":"07:05:27.592","dependents":[409],"id":370,"thread":"build-22"},{"duration":0,"stepId":"io.quarkus.rest.client.reactive.deployment.RestClientReactiveProcessor#registerQueryParamStyleForConfig","started":"07:05:27.218","dependents":[254],"id":69,"thread":"build-26"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#configPropertyInjectionPoints","started":"07:05:27.517","dependents":[408,358,357],"id":353,"thread":"build-24"},{"duration":0,"stepId":"io.quarkus.netty.deployment.NettyProcessor#cleanupMacDNSInLog","started":"07:05:27.208","dependents":[326,108],"id":17,"thread":"build-7"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ConfigBuildStep#registerConfigPropertiesBean","started":"07:05:27.482","dependents":[348],"id":329,"thread":"build-20"},{"duration":0,"stepId":"io.quarkus.vertx.core.deployment.VertxCoreProcessor#filterNettyHostsFileParsingWarn","started":"07:05:27.221","dependents":[326,108],"id":86,"thread":"build-35"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ConfigGenerationBuildStep#runtimeOverrideConfig","started":"07:05:27.236","dependents":[361],"id":146,"thread":"build-13"},{"duration":0,"stepId":"io.quarkus.arc.deployment.staticmethods.InterceptedStaticMethodsProcessor#processInterceptedStaticMethods","started":"07:05:27.484","dependents":[388,408],"id":338,"thread":"build-11"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ObservabilityProcessor#methodScanner","started":"07:05:27.252","dependents":[381],"id":190,"thread":"build-25"},{"duration":0,"stepId":"io.quarkus.arc.deployment.ArcProcessor#signalBeanContainerReady","started":"07:05:27.591","dependents":[405,409,389,369,403,376,370,374,404,371,381,373,372,383,377],"id":368,"thread":"build-37"},{"duration":0,"stepId":"io.quarkus.vertx.http.deployment.HttpSecurityProcessor#collectInterceptedMethods","started":"07:05:27.372","dependents":[291,295],"id":286,"thread":"build-14"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.common.deployment.ResteasyReactiveCommonProcessor#scanForIOInterceptors","started":"07:05:27.375","dependents":[312],"id":303,"thread":"build-15"},{"duration":0,"stepId":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveProcessor#registerCustomExceptionMappers","started":"07:05:27.205","dependents":[309],"id":5,"thread":"build-4"},{"duration":0,"stepId":"io.quarkus.deployment.steps.ReflectionDiagnosticProcessor#writeReflectionData","started":"07:05:27.759","dependents":[],"id":408,"thread":"build-38"},{"duration":0,"stepId":"io.quarkus.caffeine.deployment.CaffeineProcessor#cacheLoaders","started":"07:05:27.367","dependents":[408],"id":262,"thread":"build-24"}],"started":"2024-08-30T07:05:27.202","items":[{"count":858,"class":"io.quarkus.deployment.builditem.ConfigDescriptionBuildItem"},{"count":262,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem"},{"count":254,"class":"io.quarkus.deployment.builditem.GeneratedClassBuildItem"},{"count":97,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveMethodBuildItem"},{"count":51,"class":"io.quarkus.deployment.builditem.MainBytecodeRecorderBuildItem"},{"count":46,"class":"io.quarkus.arc.deployment.AdditionalBeanBuildItem"},{"count":43,"class":"io.quarkus.hibernate.validator.spi.AdditionalConstrainedClassBuildItem"},{"count":40,"class":"io.quarkus.deployment.builditem.StaticBytecodeRecorderBuildItem"},{"count":39,"class":"io.quarkus.vertx.http.deployment.RouteBuildItem"},{"count":32,"class":"io.quarkus.arc.deployment.SyntheticBeanBuildItem"},{"count":31,"class":"io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem"},{"count":17,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveFieldBuildItem"},{"count":16,"class":"io.quarkus.deployment.builditem.HotDeploymentWatchedFileBuildItem"},{"count":14,"class":"io.quarkus.deployment.builditem.RunTimeConfigurationDefaultBuildItem"},{"count":14,"class":"io.quarkus.deployment.builditem.ConfigClassBuildItem"},{"count":13,"class":"io.quarkus.arc.deployment.UnremovableBeanBuildItem"},{"count":13,"class":"io.quarkus.vertx.http.deployment.devmode.NotFoundPageDisplayableEndpointBuildItem"},{"count":11,"class":"io.quarkus.arc.deployment.BeanDefiningAnnotationBuildItem"},{"count":11,"class":"io.quarkus.deployment.builditem.SuppressNonRuntimeConfigChangedWarningBuildItem"},{"count":11,"class":"io.quarkus.deployment.builditem.CapabilityBuildItem"},{"count":11,"class":"io.quarkus.deployment.builditem.AdditionalIndexedClassesBuildItem"},{"count":10,"class":"io.quarkus.deployment.builditem.nativeimage.RuntimeReinitializedClassBuildItem"},{"count":10,"class":"io.quarkus.devui.spi.JsonRPCProvidersBuildItem"},{"count":9,"class":"io.quarkus.devui.deployment.InternalPageBuildItem"},{"count":9,"class":"io.quarkus.arc.deployment.AnnotationsTransformerBuildItem"},{"count":8,"class":"io.quarkus.deployment.builditem.FeatureBuildItem"},{"count":8,"class":"io.quarkus.vertx.http.deployment.webjar.WebJarBuildItem"},{"count":7,"class":"io.quarkus.devui.deployment.DevUIWebJarBuildItem"},{"count":7,"class":"io.quarkus.deployment.logging.LogCleanupFilterBuildItem"},{"count":7,"class":"io.quarkus.devui.deployment.DevUIRoutesBuildItem"},{"count":6,"class":"io.quarkus.deployment.builditem.SystemPropertyBuildItem"},{"count":6,"class":"io.quarkus.resteasy.reactive.server.spi.MethodScannerBuildItem"},{"count":6,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageSystemPropertyBuildItem"},{"count":6,"class":"io.quarkus.devui.spi.page.CardPageBuildItem"},{"count":5,"class":"io.quarkus.resteasy.reactive.spi.ExceptionMapperBuildItem"},{"count":5,"class":"io.quarkus.devui.spi.buildtime.BuildTimeActionBuildItem"},{"count":5,"class":"io.quarkus.arc.deployment.GeneratedBeanBuildItem"},{"count":5,"class":"io.quarkus.deployment.builditem.ConsoleCommandBuildItem"},{"count":5,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyWriterBuildItem"},{"count":4,"class":"io.quarkus.arc.deployment.AutoAddScopeBuildItem"},{"count":4,"class":"io.quarkus.deployment.execannotations.ExecutionModelAnnotationsAllowedBuildItem"},{"count":4,"class":"io.quarkus.devui.deployment.BuildTimeConstBuildItem"},{"count":4,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyReaderOverrideBuildItem"},{"count":4,"class":"io.quarkus.deployment.builditem.AdditionalApplicationArchiveMarkerBuildItem"},{"count":4,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyWriterOverrideBuildItem"},{"count":3,"class":"io.quarkus.vertx.http.deployment.HttpAuthMechanismAnnotationBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.RunTimeConfigBuilderBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.ShutdownListenerBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveHierarchyBuildItem"},{"count":3,"class":"io.quarkus.vertx.http.deployment.FilterBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageConfigBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.BytecodeTransformerBuildItem"},{"count":3,"class":"io.quarkus.deployment.builditem.ServiceStartBuildItem"},{"count":3,"class":"io.quarkus.arc.deployment.AutoInjectAnnotationBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.common.deployment.ResourceInterceptorsContributorBuildItem"},{"count":2,"class":"io.quarkus.cache.deployment.spi.CacheManagerInfoBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.ObjectSubstitutionBuildItem"},{"count":2,"class":"io.quarkus.devui.spi.buildtime.QuteTemplateBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.StaticInitConfigBuilderBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.RecordableConstructorBuildItem"},{"count":2,"class":"io.quarkus.deployment.dev.testing.TestListenerBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.server.spi.UnwrappedExceptionBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.spi.CustomExceptionMapperBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.BytecodeRecorderObjectLoaderBuildItem"},{"count":2,"class":"io.quarkus.resteasy.reactive.spi.MessageBodyReaderBuildItem"},{"count":2,"class":"io.quarkus.devui.spi.buildtime.StaticContentBuildItem"},{"count":2,"class":"io.quarkus.devui.deployment.InternalImportMapBuildItem"},{"count":2,"class":"io.quarkus.deployment.builditem.LogCategoryBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.MvnpmBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.AnnotationProxyBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.TransformedClassesBuildItem"},{"count":1,"class":"io.quarkus.netty.deployment.EventLoopGroupBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.devui.ArcBeanInfoBuildItem"},{"count":1,"class":"io.quarkus.deployment.console.ConsoleInstalledBuildItem"},{"count":1,"class":"io.quarkus.jaxrs.client.reactive.deployment.RestClientDefaultProducesBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanDiscoveryFinishedBuildItem"},{"count":1,"class":"io.quarkus.rest.client.reactive.spi.RestClientAnnotationsTransformerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.RunTimeConfigurationProxyBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.SynthesisFinishedBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ConfigurationTypeBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageResourceBundleBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ResourceInterceptorsBuildItem"},{"count":1,"class":"io.quarkus.vertx.core.deployment.EventLoopCountBuildItem"},{"count":1,"class":"io.quarkus.vertx.core.deployment.CoreVertxBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BuildCompatibleExtensionsBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ContextResolversBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.ThemeVarsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.ReflectiveHierarchyIgnoreWarningBuildItem"},{"count":1,"class":"io.quarkus.jsonb.spi.JsonbDeserializerBuildItem"},{"count":1,"class":"io.quarkus.jsonb.spi.JsonbSerializerBuildItem"},{"count":1,"class":"io.quarkus.smallrye.context.deployment.ContextPropagationInitializedBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ExceptionMappersBuildItem"},{"count":1,"class":"io.quarkus.vertx.deployment.LocalCodecSelectorTypesBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.InterceptorResolverBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.InitialRouterBuildItem"},{"count":1,"class":"io.quarkus.deployment.dev.ExceptionNotificationBuildItem"},{"count":1,"class":"io.quarkus.deployment.pkg.builditem.CompiledJavaVersionBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ValidationPhaseBuildItem"},{"count":1,"class":"io.quarkus.jaxrs.client.reactive.deployment.JaxrsClientReactiveEnricherBuildItem"},{"count":1,"class":"io.quarkus.netty.deployment.EventLoopSupplierBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanArchiveIndexBuildItem"},{"count":1,"class":"io.quarkus.cache.deployment.CacheNamesBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ConsoleFormatterBannerBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.SuppressConditionGeneratorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BuildTimeEnabledStereotypesBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationArchivesBuildItem"},{"count":1,"class":"io.quarkus.deployment.BooleanSupplierFactoryBuildItem"},{"count":1,"class":"io.quarkus.tls.TlsRegistryBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ContextHandlerBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ParamConverterProvidersBuildItem"},{"count":1,"class":"io.quarkus.rest.client.reactive.spi.DevServicesRestClientProxyProvider$BuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.spi.HandlerConfigurationProviderBuildItem"},{"count":1,"class":"io.quarkus.smallrye.health.deployment.SmallRyeHealthBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.TransformedAnnotationsBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveResourceMethodEntriesBuildItem"},{"count":1,"class":"io.quarkus.rest.client.reactive.deployment.RegisteredRestClientBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.GeneratedFileSystemResourceHandledBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.DevServicesLauncherConfigResultBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ExcludedTypeBuildItem"},{"count":1,"class":"io.quarkus.deployment.pkg.builditem.OutputTargetBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ValidationPhaseBuildItem$ValidationErrorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.PreBeanContainerBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.InjectionPointTransformerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ThreadFactoryBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationIndexBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.webjar.WebJarResultsBuildItem"},{"count":1,"class":"io.quarkus.netty.deployment.MinNettyAllocatorMaxOrderBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.NonApplicationRootPathBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.VertxWebRouterBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.CombinedIndexBuildItem"},{"count":1,"class":"io.quarkus.deployment.Capabilities"},{"count":1,"class":"io.quarkus.devui.deployment.ExtensionsBuildItem"},{"count":1,"class":"io.quarkus.deployment.logging.LoggingSetupBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ExecutorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ArcContainerBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.JsonRPCRuntimeMethodsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ExtensionSslNativeSupportBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.SetupEndpointsResultBuildItem"},{"count":1,"class":"io.quarkus.smallrye.context.deployment.spi.ThreadContextProviderBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanRegistrationPhaseBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveDeploymentInfoBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ObserverRegistrationPhaseBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationClassNameBuildItem"},{"count":1,"class":"io.quarkus.jaxrs.client.reactive.deployment.RestClientDefaultConsumesBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ResourceScanningResultBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.NativeImageResourceBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.StreamingLogHandlerBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ServerSerialisersBuildItem"},{"count":1,"class":"io.quarkus.deployment.dev.DisableInstrumentationForIndexPredicateBuildItem"},{"count":1,"class":"io.quarkus.vertx.deployment.VertxBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.ResteasyReactiveDeploymentBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.BeanContainerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.nativeimage.ServiceProviderBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.CurrentContextFactoryBuildItem"},{"count":1,"class":"io.quarkus.deployment.ide.EffectiveIdeBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ParameterContainersBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.JaxRsResourceIndexBuildItem"},{"count":1,"class":"io.quarkus.deployment.pkg.builditem.CurateOutcomeBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.HttpRootPathBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ConfigurationBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.DeploymentMethodBuildItem"},{"count":1,"class":"io.quarkus.deployment.steps.CapabilityAggregationStep$CapabilitiesConfiguredInDescriptorsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationStartBuildItem"},{"count":1,"class":"io.quarkus.devui.deployment.RelocationImportMapBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationClassPredicateBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.common.deployment.ApplicationResultBuildItem"},{"count":1,"class":"io.quarkus.vertx.http.deployment.BodyHandlerBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.LogCategoryMinLevelDefaultsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.GeneratedResourceBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.ContextRegistrationPhaseBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.CustomScopeAnnotationsBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.IOThreadDetectorBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.InvokerFactoryBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.SslNativeConfigBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.server.deployment.BuiltInReaderOverrideBuildItem"},{"count":1,"class":"io.quarkus.arc.deployment.CompletedApplicationClassPredicateBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.ApplicationInfoBuildItem"},{"count":1,"class":"io.quarkus.deployment.ide.IdeRunningProcessBuildItem"},{"count":1,"class":"io.quarkus.deployment.ide.IdeFileBuildItem"},{"count":1,"class":"io.quarkus.resteasy.reactive.spi.ContainerRequestFilterBuildItem"},{"count":1,"class":"io.quarkus.deployment.builditem.MainClassBuildItem"}],"itemsCount":2200,"buildTarget":"quarkus-application"} \ No newline at end of file diff --git a/customer-api-consumer/target/classes/application.properties b/customer-api-consumer/target/classes/application.properties deleted file mode 100644 index 4a64edc..0000000 --- a/customer-api-consumer/target/classes/application.properties +++ /dev/null @@ -1,10 +0,0 @@ -%dev.quarkus.http.port=8081 -%dev.quarkus.rest-client."customer-api".url=http://localhost:8080/api/v1 -quarkus.rest-client."customer-api".connect-timeout=2000 -%dev.quarkus.rest-client."customer-api".read-timeout=2000 -quarkus.cache.caffeine."customers-api-cache".metrics-enabled=true -quarkus.cache.caffeine."customers-api-cache".expire-after-write=60S -quarkus.management.port=9091 -quarkus.management.enabled=true -%dev.quarkus.management.host=localhost - diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerConsumerApplication.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerConsumerApplication.class deleted file mode 100644 index b898783e014b173bb65f09c31585210174e3f840..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 653 zcmbVKxlRKy5Piy}RLhOhP&pebG3>5`*XF;dKooocAB7kv zKqwFemOSHmp7Ysn?=PR1a=Kruk6f-*)Js<+}n@I+)Ce%88`v1J%JRGG3z48_f@ zW{6RY1qdq`M}=WUX@2j7xpO%;F0(3?{9<5}KOqbYn>W!g>6JAq>(sWI0VWyt+mh#T z*CmeXg%n?%P2k(6cKO-0h`%eUfDABL@nP46ZgfG%A TGt84JV5u*cu|nF{Tm?P=B_p9I diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerService.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomerService.class deleted file mode 100644 index cb7c95a525303870e7c052e28d2c64cfd14dccda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1101 zcmb7DZBJ7%6n;83CfkJZA_yqHlJJsI6a6+qvdoy6Of(Glz1%gd(A#@$dl&gvnrMuE z@CW##jOUh33?Y`tL8e}>%$J~iH z)sjbvaak-aZ)eUYH0eq^RFPz;Mx&Khsu-Sit~(rQC5``!K_{A3+`?2Dl^Uw3G3?yz zIK#}b^ewH&v>e0A#%4z)+{Hp`dnS3Dd1cP{d!w2aOk<{udJVIfW2m2qq2O9jns1Lz zWaJqpca>3ok6~hCv&T?uCwj*ak{CEWg%JMGd)FnsU;3oEM<2uTL1w&)WluRp z{9DE(UgUU0e=S$^g5>Lp-|ED_d&A>np3xuohR=F zd5mmj>kHU-lo>veSHJ>|lVN8GcW7QakHR9B$h#Y2ma#&%N;|9c-*dQ6W{oZ?1n6zr z%%R!m5PgBT`VS%-A&!wATp-Qj;RtDuY=J;3Ti# diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomersResource.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/CustomersResource.class deleted file mode 100644 index 3540d58c429083fb09aa515ced0e1937dbcbcf46..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2520 zcmb7GYgZFj6x}xj28U5%v{9tRYSBWh41K9>EUgAn+6dMlec0D!av=kgnK%zx{#CnH zTdNH z)i>p~G^ys8>yc}Pw&$7)*`YRqGEQhXY2X!91S-#VEillLU4g4phdO&MvY3O@2F7rP z$b1#3kRGR|SBLQ`1@oS(W^_#8tcKSOoQt(e31~;MHp^?9%A�b=$SWxe>g9Nevea zT*R9KCwtk|J;$LY^P_SQ`bu^L#`_3JrDij^Bw+%_Mo`5i4R6H^ToyRh^Vg>=aP9w+ ze~x8s7^Z;Gb-aytG`wrzJ-km~2h=nCo*%H=Ha%wRZU|h-!X{kQ+tP2UN0D+ZRm)d4 z!@B2!g{|VMfou4H&a9Lff!TZx2W&EjIo4|$YJJ5Za|x;v8*{fSmt;o~avtV-XG-!ow`Y}+(4Uuc&0#*ko+H0=#nhLKOtGtV7{>uIAV zsic@|b2J{iAGx93QLA=f6Uzto5@yOu;cnxb{k=@ zOfzwBQ_Hk=_bB1s^t_NQC%Y-`poA|3F6O&Co%B9LnP_wfU+LW6UmIA$atX_$gZNg* zclchz4+bO_*$jsfXgRiW!@a#eA9@@M(iHb@36{Y8;RQHo-v={mF~U?j*0G_XZNSE+ z!1-j%6LxKP+uKrRBdHNdkn7S4J)c{8gaz!q{gdY;GfFwTBi)vxg2{&GZAIN$TAh65 za*{s7m7T82tH1bV8uD=4{NBhs*ZFyB+M!~P8;h>1{JJB9Km{7OlP?_Lkk=;iqP&Qp=+>o72YkN9?n_kz!I^;d}Bp*_V>;0cZw@H3?a%*A)K z0V@1|igu@Qoac`zF;Yu>!k-bqP5u>7$2^~9o^J8EK#kiEAp*wX7-Es~IO;XN#ZmP% z>Z$U0FIwEs;KxkEWG;%HMTxzS6Z?MepT>~_e8$H)G_o*re8$f7>SMfCz4RNzFMLar z8cF~hO+r*stt_0~as`dZ? diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApi.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApi.class deleted file mode 100644 index 2c83cc37c733b2ac09b406bc5b400e107c09832d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 600 zcmb7?O>R>$5XZ-XHZ=W8X^?170E>1G(5PyZ78XPTrNE{u*O|Uf>SsTB>{huN3l6}c z5c8hMrV?3EKjVl}Tkq3~ur8Uy3cm$DGq82d zRj|1vGO+k3IG%NdG|=NTdaso@hVkq_TE5Kj>|B?Dqj?FLYx>T@x1J^;#BAGq+Uubf zdax;5d=gB8AFsY@#M@`LUs7BYN20EcN9&9BKD15a*>!nvDKQurT*s0eePG}E*Mg{Y zr|n}5T+CvskW|`6R26n9HYwgIj)^3%HRsR@i*u@2GNrk?rrk7J^>jdYTz#UIfgSgE zI48DY1Ec3X+kCGP16*UWX~4h>{Q&?*XSo5J(1X5OJ$MCMy1&-bK=*Csc5c83?CQ;4 UN9=dRNbR9|4@BX^784l#0e=OuDgXcg diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApiProvider.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerApiProvider.class deleted file mode 100644 index 072e8b6eb6c4a493fa7408a381b07fb78d395272..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 819 zcmb7DO=}cE5PiMb?3&Hy!}yixN%W9-NQ(y%BEqubX;4XI@4Y>hO>btVhn}9`&r%Qs z5B>mul=x=Ing~JI!_=Fqu8&vM)xUoK_z7TyM+0=Q(noiQRrD0L=jOub%oH>IVLBHZ z6?(5-;o=*GmHmUs8g5~&kHHY@7%IF>MOXH$&T0l!CNDG5))!TsOVBoRQbawjtLUkZ zO7}7N3ztezShrVJh3Cm~d5#qJj_V@2Tqdq^(@aK1;iHL;wH00^KFqYRep!jmoejPW z{?w6NkSZ>SxuR)MAJa5$sWNSM>{C(LN?alD>wGHVlVN&=oy1#{O-yi&erfE+GuPHz zj{af{thYIncx^xmFZK_XAI8&UZq7}JMswg2%HY`dWqT}^)>bMOd-5N*w{mLgEYfRm z;_G1L9ml1xdyU+J_F=Ol3WqmkYD7Zt$;1 z+$460+(61LYMR*itv>q>^|d|TrfiOZ0d7+^3Fv?w+#xF5#XTnZH~1U+UwGKTRq)0Q W!3~e*9o#2AX#ICvx%ZdhL*NhpMA|a| diff --git a/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerDto.class b/customer-api-consumer/target/classes/de/schulung/sample/consumer/client/CustomerDto.class deleted file mode 100644 index 10519d6eed0c2c45cbbd53051972fe2129a8a6a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1640 zcmb7E+iuf95S>k(rcK=@ZJIU>*K$qWi;Kh)MM$L;5-1czFYivWYPL8wve$eUNK{BX z@Bw@j;>?IWu!+Hot!V_(?>&^kkX}G*KeUrXo!W+UiL+?)DQu2~OSE z8+`Jm+YN&_8OX@(`bq}c-AiH};=Zp#K~|Eeo}g;`%=_%QiB`UQeEfQUhk2)Lnx--^ zfj5wX7E+Awf%;HKDmXPL+ooBX6ExjXk?!w%8qj(Q)oLK!cG&fNb{llnrg`Qp#u~0N z)o8Iqb(@xG8C94fOoDfvGuhRGCZDT7=@)_~T5BhQN~cmEn~E1&YuTDn>0a1F`bt{` z@*o*>WOU?pd{aADapFaa??b1h`zjW+-Tpt(cG5Bqj3|p2Wn7g-kc~QDUh1)YfyyW% zXbQkXmI9=))G2AbH7+%GUwtceKkU8tBIMRGLh&|&t|V#iV*g;vB&b0v z_%?BKVFhf_`9|W4f!)A&(l{6CCeC&Wpj&hsH$ivkF232|QZ~4r8@x*Qa)M{F!OOY9 z_j5B>vcZkq;0N>&nsC|AU<=%&vwlvcuQ(Oxvguh9y_6z`O|u}Zrl3ba7xCt)ipyha z0X9ZCb6rXv%!qQ-CG7$ZN9kw8qpiLC6}f)#iVybarb07Z8dKmY&$ diff --git a/customer-api-consumer/target/quarkus/bootstrap/dev-app-model.dat b/customer-api-consumer/target/quarkus/bootstrap/dev-app-model.dat deleted file mode 100644 index b5910c362d17a165efd985f32e1cbd4d0c241178..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 82338 zcmeHw3AAKYb?B|(y?Q-C13fU)KqI15RZq~M7-*n@jtwFWjerRE)w}P#>aK}fxB9(@ zh(skpaT(+E)u=y?K@*208qK6XiC<0fH6rn=iNiMw8ZgMMwg+YS1G@Ahi# z?u^%}UGB}ggI2Js*K0K!ZqV#@uEzI&|HS`MJaylD{

!?sZnVz1}WAXwJHgAaJ(q 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 pch%I5=icvthjX)Y^o-YU_{| Date: Fri, 30 Aug 2024 07:13:47 +0200 Subject: [PATCH 3/4] Update deps and git ignores --- .gitignore | 2 +- customer-api-consumer/.gitignore | 45 ++++++++++++++++++++++++++++++++ customer-api-consumer/pom.xml | 4 +-- 3 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 customer-api-consumer/.gitignore diff --git a/.gitignore b/.gitignore index 410e552..60d79dc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ **/.* !.gitignore !.github -*.iml \ No newline at end of file +*.iml diff --git a/customer-api-consumer/.gitignore b/customer-api-consumer/.gitignore new file mode 100644 index 0000000..91a800a --- /dev/null +++ b/customer-api-consumer/.gitignore @@ -0,0 +1,45 @@ +#Maven +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +release.properties +.flattened-pom.xml + +# Eclipse +.project +.classpath +.settings/ +bin/ + +# IntelliJ +.idea +*.ipr +*.iml +*.iws + +# NetBeans +nb-configuration.xml + +# Visual Studio Code +.vscode +.factorypath + +# OSX +.DS_Store + +# Vim +*.swp +*.swo + +# patch +*.orig +*.rej + +# Local environment +.env + +# Plugin directory +/.quarkus/cli/plugins/ +# TLS Certificates +.certs/ diff --git a/customer-api-consumer/pom.xml b/customer-api-consumer/pom.xml index 54f736e..91ab8cf 100644 --- a/customer-api-consumer/pom.xml +++ b/customer-api-consumer/pom.xml @@ -44,11 +44,11 @@ io.quarkus - quarkus-resteasy-reactive + quarkus-rest-jsonb io.quarkus - quarkus-rest-client-reactive-jsonb + quarkus-rest-client-jsonb io.quarkus From 1dd068043062ecbc607cef5064dc18a712c41c2b Mon Sep 17 00:00:00 2001 From: Ralf Ueberfuhr Date: Fri, 30 Aug 2024 15:20:54 +0200 Subject: [PATCH 4/4] Small fixes --- customer-api-consumer/pom.xml | 303 +++++++++--------- .../sample/consumer/client/CustomerDto.java | 14 +- 2 files changed, 158 insertions(+), 159 deletions(-) diff --git a/customer-api-consumer/pom.xml b/customer-api-consumer/pom.xml index 91ab8cf..3de9f4c 100644 --- a/customer-api-consumer/pom.xml +++ b/customer-api-consumer/pom.xml @@ -1,161 +1,162 @@ - 4.0.0 - de.schulung.quarkus - customer-api-consumer - 1.0.0-SNAPSHOT + 4.0.0 + de.schulung.quarkus + customer-api-consumer + 1.0.0-SNAPSHOT - - 3.12.1 - 21 - UTF-8 - UTF-8 - quarkus-bom - io.quarkus.platform - 3.13.3 - true - 3.2.5 - 1.18.32 - + + 3.12.1 + 17 + UTF-8 + UTF-8 + quarkus-bom + io.quarkus.platform + 3.13.3 + true + 3.2.5 + 1.18.32 + + + + + + io.quarkus.platform + quarkus-bom + ${quarkus.platform.version} + pom + import + + + - - - io.quarkus.platform - quarkus-bom - ${quarkus.platform.version} - pom - import - + + org.projectlombok + lombok + ${lombok.version} + provided + + + io.quarkus + quarkus-arc + + + io.quarkus + quarkus-rest-jsonb + + + io.quarkus + quarkus-rest-client-jsonb + + + io.quarkus + quarkus-smallrye-health + + + io.quarkus + quarkus-cache + + + io.quarkus + quarkus-junit5 + test + + + io.quarkus + quarkus-junit5-mockito + test + - - - - - org.projectlombok - lombok - ${lombok.version} - provided - - - io.quarkus - quarkus-arc - - - io.quarkus - quarkus-rest-jsonb - - - io.quarkus - quarkus-rest-client-jsonb - - - io.quarkus - quarkus-smallrye-health - - - io.quarkus - quarkus-cache - - - io.quarkus - quarkus-junit5 - test - - - io.quarkus - quarkus-junit5-mockito - test - - - - - - - maven-compiler-plugin - ${compiler-plugin.version} - - - - org.projectlombok - lombok - ${lombok.version} - - - - - - - - - ${quarkus.platform.group-id} - quarkus-maven-plugin - ${quarkus.platform.version} - true - - - - build - generate-code - generate-code-tests - - - - - - maven-compiler-plugin - - - -parameters - - - - - maven-surefire-plugin - ${surefire-plugin.version} - - - org.jboss.logmanager.LogManager - ${maven.home} - - - - - maven-failsafe-plugin - ${surefire-plugin.version} - - - - integration-test - verify - - - - - - ${project.build.directory}/${project.build.finalName}-runner - org.jboss.logmanager.LogManager - ${maven.home} - - - - - + + + + + maven-compiler-plugin + ${compiler-plugin.version} + + + + org.projectlombok + lombok + ${lombok.version} + + + + + + + + + ${quarkus.platform.group-id} + quarkus-maven-plugin + ${quarkus.platform.version} + true + + + + build + generate-code + generate-code-tests + + + + + + maven-compiler-plugin + + + -parameters + + + + + maven-surefire-plugin + ${surefire-plugin.version} + + + org.jboss.logmanager.LogManager + ${maven.home} + + + + + maven-failsafe-plugin + ${surefire-plugin.version} + + + + integration-test + verify + + + + + + ${project.build.directory}/${project.build.finalName}-runner + + org.jboss.logmanager.LogManager + ${maven.home} + + + + + - - - native - - - native - - - - false - true - - - + + + native + + + native + + + + false + true + + + diff --git a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java index 99d738b..fad8199 100644 --- a/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java +++ b/customer-api-consumer/src/main/java/de/schulung/sample/consumer/client/CustomerDto.java @@ -1,6 +1,6 @@ package de.schulung.sample.consumer.client; -import jakarta.json.bind.annotation.JsonbTransient; +import jakarta.json.bind.annotation.JsonbProperty; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; @@ -15,12 +15,10 @@ @AllArgsConstructor public class CustomerDto { - // readonly property - @Setter(onMethod_ = @JsonbTransient) - private UUID uuid; - private String name; - //@JsonbProperty("birth_date") - private LocalDate birthDate; - private String state; + private UUID uuid; + private String name; + @JsonbProperty("birthdate") + private LocalDate birthDate; + private String state; }