diff --git a/docs/modules/ROOT/pages/consul.adoc b/docs/modules/ROOT/pages/consul.adoc index 6879587..4610acb 100644 --- a/docs/modules/ROOT/pages/consul.adoc +++ b/docs/modules/ROOT/pages/consul.adoc @@ -154,7 +154,8 @@ The result should be: `Hello from Consul` as it is the value obtained from the C == Run the application as a native executable -You can of course create a native image using the instructions of the link:building-native-image[Building a native executable guide]. +You can of course create a native image using the instructions of the +link:https://quarkus.io/guides/building-native-image[Building a native executable guide]. == Configuration Reference diff --git a/docs/modules/ROOT/pages/includes/attributes.adoc b/docs/modules/ROOT/pages/includes/attributes.adoc index fdd37df..6b4b0ef 100644 --- a/docs/modules/ROOT/pages/includes/attributes.adoc +++ b/docs/modules/ROOT/pages/includes/attributes.adoc @@ -1,4 +1,4 @@ -:quarkus-version: 3.7.1 +:quarkus-version: 3.7.2 :quarkus-config-extensions-version: 2.3.0 :maven-version: 3.8.1+ diff --git a/docs/modules/ROOT/pages/includes/quarkus-consul-config.adoc b/docs/modules/ROOT/pages/includes/quarkus-consul-config.adoc index 36b7ed3..c52e0b4 100644 --- a/docs/modules/ROOT/pages/includes/quarkus-consul-config.adoc +++ b/docs/modules/ROOT/pages/includes/quarkus-consul-config.adoc @@ -197,7 +197,7 @@ ifndef::add-copy-button-to-env-var[] Environment variable: `+++QUARKUS_CONSUL_CONFIG_AGENT_CONNECTION_TIMEOUT+++` endif::add-copy-button-to-env-var[] --|link:https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html[Duration] - link:#duration-note-anchor-{summaryTableId}[icon:question-circle[], title=More information about the Duration format] + link:#duration-note-anchor-{summaryTableId}[icon:question-circle[title=More information about the Duration format]] |`10s` @@ -217,7 +217,7 @@ ifndef::add-copy-button-to-env-var[] Environment variable: `+++QUARKUS_CONSUL_CONFIG_AGENT_READ_TIMEOUT+++` endif::add-copy-button-to-env-var[] --|link:https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html[Duration] - link:#duration-note-anchor-{summaryTableId}[icon:question-circle[], title=More information about the Duration format] + link:#duration-note-anchor-{summaryTableId}[icon:question-circle[title=More information about the Duration format]] |`60s` diff --git a/docs/modules/ROOT/pages/jdbc.adoc b/docs/modules/ROOT/pages/jdbc.adoc index f3e6385..20163a6 100644 --- a/docs/modules/ROOT/pages/jdbc.adoc +++ b/docs/modules/ROOT/pages/jdbc.adoc @@ -135,7 +135,8 @@ The result should be: `Hello from DB` as it is the value obtained from the datab == Run the application as a native executable -You can of course create a native image using the instructions of the link:building-native-image[Building a native executable guide]. +You can of course create a native image using the instructions of the +link:https://quarkus.io/guides/building-native-image[Building a native executable guide]. == Configuration Reference diff --git a/integration-tests/jdbc/pom.xml b/integration-tests/jdbc/pom.xml index affb35f..afd6a48 100644 --- a/integration-tests/jdbc/pom.xml +++ b/integration-tests/jdbc/pom.xml @@ -73,18 +73,4 @@ - - - - native-image - - - native - - - - jar - - - diff --git a/jdbc/deployment/src/main/java/io/quarkiverse/config/jdbc/deployment/ConfigExtensionsProcessor.java b/jdbc/deployment/src/main/java/io/quarkiverse/config/jdbc/deployment/ConfigExtensionsProcessor.java index b6e3808..b0c6d76 100644 --- a/jdbc/deployment/src/main/java/io/quarkiverse/config/jdbc/deployment/ConfigExtensionsProcessor.java +++ b/jdbc/deployment/src/main/java/io/quarkiverse/config/jdbc/deployment/ConfigExtensionsProcessor.java @@ -20,7 +20,6 @@ FeatureBuildItem feature() { void jdbcConfigFactory( BuildProducer staticInitConfigBuilder, BuildProducer runTimeConfigBuilder) { - staticInitConfigBuilder.produce(new StaticInitConfigBuilderBuildItem(JdbcConfigSourceFactoryBuilder.class.getName())); runTimeConfigBuilder.produce(new RunTimeConfigBuilderBuildItem(JdbcConfigSourceFactoryBuilder.class.getName())); } }