diff --git a/node/api/build.gradle.kts b/node/api/build.gradle.kts index 949f860d0e..52450f3eeb 100644 --- a/node/api/build.gradle.kts +++ b/node/api/build.gradle.kts @@ -21,5 +21,5 @@ plugins { dependencies { api(projects.driver.driverApi) - compileOnlyApi(libs.bundles.cloud) + compileOnlyApi(libs.bundles.cloudApi) } diff --git a/node/api/src/main/java/eu/cloudnetservice/node/command/annotation/EnableConfirmSkipFlag.java b/node/api/src/main/java/eu/cloudnetservice/node/command/annotation/EnableConfirmSkipFlag.java index 2563650c9e..57fdcddddb 100644 --- a/node/api/src/main/java/eu/cloudnetservice/node/command/annotation/EnableConfirmSkipFlag.java +++ b/node/api/src/main/java/eu/cloudnetservice/node/command/annotation/EnableConfirmSkipFlag.java @@ -24,13 +24,11 @@ import lombok.NonNull; /** - * This annotation allows users to skip the required confirmation - * {@link org.incendo.cloud.processors.confirmation.annotation.Confirmation} of a command. When this annotation is - * applied to a method a flag is implicitly appended to the command which can be used to skip the confirmation. + * This annotation allows users to skip the required confirmation of a command. When this annotation is applied to a + * method a flag is implicitly appended to the command which can be used to skip the confirmation. *

* The annotations value is used as the flag name, which defaults to {@code confirm}. * - * @see org.incendo.cloud.processors.confirmation.annotation.Confirmation * @since 4.0 */ @Documented