diff --git a/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java b/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java index e6cfd468115bb4..8b39390971cad4 100644 --- a/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java +++ b/extensions/smallrye-health/deployment/src/main/java/io/quarkus/smallrye/health/deployment/SmallRyeHealthProcessor.java @@ -68,25 +68,25 @@ class SmallRyeHealthProcessor { @ConfigRoot(name = "smallrye-health") static final class SmallRyeHealthConfig { /** - * Root path for health-checking servlets. + * Root path for health-checking endpoints. */ @ConfigItem(defaultValue = "/health") String rootPath; /** - * The relative path of the liveness health-checking servlet. + * The relative path of the liveness health-checking endpoint. */ @ConfigItem(defaultValue = "/live") String livenessPath; /** - * The relative path of the readiness health-checking servlet. + * The relative path of the readiness health-checking endpoint. */ @ConfigItem(defaultValue = "/ready") String readinessPath; /** - * The relative path of the health group servlet. + * The relative path of the health group endpoint. */ @ConfigItem(defaultValue = "/group") String groupPath; diff --git a/extensions/smallrye-health/runtime/pom.xml b/extensions/smallrye-health/runtime/pom.xml index 2188870cd8c485..f4c4fb6bb4d7c7 100644 --- a/extensions/smallrye-health/runtime/pom.xml +++ b/extensions/smallrye-health/runtime/pom.xml @@ -19,10 +19,6 @@ io.smallrye smallrye-health - - jakarta.inject - jakarta.inject-api - io.quarkus quarkus-core