-
Notifications
You must be signed in to change notification settings - Fork 5
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.2 to 3.14.0 (#284)
* Bump quarkus.version from 3.13.2 to 3.14.0 Bumps `quarkus.version` from 3.13.2 to 3.14.0. Updates `io.quarkus:quarkus-bom` from 3.13.2 to 3.14.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](quarkusio/quarkus@3.13.2...3.14.0) Updates `io.quarkus:quarkus-maven-plugin` from 3.13.2 to 3.14.0 Updates `io.quarkus:quarkus-extension-processor` from 3.13.2 to 3.14.0 Updates `io.quarkus:quarkus-extension-maven-plugin` from 3.13.2 to 3.14.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](quarkusio/quarkus@3.13.2...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-maven-plugin 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 to ConfigMapping using interface because, well idk. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael J. Simons <michael@simons.ac>
- Loading branch information
1 parent
e3c3623
commit 585d499
Showing
14 changed files
with
722 additions
and
293 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
22 changes: 13 additions & 9 deletions
22
deployment/src/main/java/io/quarkus/neo4j/deployment/Neo4jBuildTimeConfig.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,21 +1,25 @@ | ||
package io.quarkus.neo4j.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; | ||
|
||
@ConfigRoot(name = "neo4j", phase = ConfigPhase.BUILD_TIME) | ||
public class Neo4jBuildTimeConfig { | ||
@ConfigMapping(prefix = "quarkus.neo4j") | ||
@ConfigRoot(phase = ConfigPhase.BUILD_TIME) | ||
public interface Neo4jBuildTimeConfig { | ||
|
||
/** | ||
* Whether a health check is published in case the smallrye-health extension is present. | ||
* {@return whether a health check is published in case the smallrye-health extension is present} | ||
*/ | ||
@ConfigItem(name = "health.enabled", defaultValue = "true") | ||
public boolean healthEnabled; | ||
@WithName("health.enabled") | ||
@WithDefault("true") | ||
boolean healthEnabled(); | ||
|
||
/** | ||
* Configuration for DevServices. DevServices allows Quarkus to automatically start a Neo4j instance in dev and test mode. | ||
* DevServices allows Quarkus to automatically start a Neo4j instance in dev and test mode. | ||
* {@return Configuration for DevServices} | ||
*/ | ||
@ConfigItem | ||
public DevServicesBuildTimeConfig devservices; | ||
DevServicesBuildTimeConfig devservices(); | ||
} |
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
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,4 +1,4 @@ | ||
:quarkus-version: 3.13.2 | ||
:quarkus-version: 3.14.0 | ||
:quarkus-neo4j-version: 4.2.2 | ||
:maven-version: 3.8.1+ | ||
|
||
|
Oops, something went wrong.