-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,4 +61,7 @@ target/ | |
pom.xml.tag | ||
pom.xml.releaseBackup | ||
pom.xml.versionsBackup | ||
release.properties | ||
release.properties | ||
|
||
# Genrated docs don't belong in the repo | ||
docs/modules/ROOT/pages/includes/quarkus-neo4j_quarkus.neo4j.adoc | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
michael-simons
Author
Contributor
|
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(); | ||
} |
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+ | ||
|
||
|
Actually it should belong in the repository, otherwise, it will not be shown in https://docs.quarkiverse.io/index/explore/index.html, since Antora does not invoke a Maven build