-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump quarkus.version from 3.13.3 to 3.14.0 (#407)
Bumps `quarkus.version` from 3.13.3 to 3.14.0. Updates `io.quarkus:quarkus-bom` from 3.12.3 to 3.14.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](quarkusio/quarkus@3.12.3...3.14.0) Updates `io.quarkus:quarkus-extension-processor` from 3.12.3 to 3.14.0 Updates `io.quarkus:quarkus-extension-maven-plugin` from 3.12.3 to 3.14.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](quarkusio/quarkus@3.12.3...3.14.0) --- updated-dependencies: - dependency-name: io.quarkus:quarkus-bom dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-extension-processor dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-extension-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Migrate legacy @configroot to new approach --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Łukasz Witkowski <contact@lukaszwitkowski.com>
- Loading branch information
1 parent
e9db0e7
commit 2de775d
Showing
5 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 12 additions & 8 deletions
20
...t/src/main/java/com/tietoevry/quarkus/resteasy/problem/deployment/ProblemBuildConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
package com.tietoevry.quarkus.resteasy.problem.deployment; | ||
|
||
import io.quarkus.runtime.annotations.ConfigItem; | ||
import io.quarkus.runtime.annotations.ConfigPhase; | ||
import io.quarkus.runtime.annotations.ConfigRoot; | ||
import io.smallrye.config.ConfigMapping; | ||
import io.smallrye.config.WithDefault; | ||
import io.smallrye.config.WithName; | ||
import java.util.Set; | ||
|
||
@ConfigRoot(name = "resteasy.problem", phase = ConfigPhase.BUILD_TIME) | ||
public class ProblemBuildConfig { | ||
@ConfigMapping(prefix = "quarkus.resteasy.problem") | ||
@ConfigRoot(phase = ConfigPhase.BUILD_TIME) | ||
public interface ProblemBuildConfig { | ||
|
||
/** | ||
* MDC properties that should be included in problem responses. | ||
*/ | ||
@ConfigItem(defaultValue = "uuid") | ||
public Set<String> includeMdcProperties; | ||
@WithDefault("uuid") | ||
Set<String> includeMdcProperties(); | ||
|
||
/** | ||
* Whether or not metrics should be enabled if quarkus-smallrye-metrics is used. | ||
* Whether metrics should be enabled if quarkus-smallrye-metrics is used. | ||
*/ | ||
@ConfigItem(name = "metrics.enabled", defaultValue = "false") | ||
public boolean metricsEnabled; | ||
@WithName("metrics.enabled") | ||
@WithDefault("false") | ||
boolean metricsEnabled(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters