Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion node/api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ plugins {

dependencies {
api(projects.driver.driverApi)
compileOnlyApi(libs.bundles.cloud)
compileOnlyApi(libs.bundles.cloudApi)
}
Original file line number Diff line number Diff line change
Expand Up @@ -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.
* <p>
* 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
Expand Down
Loading