Skip to content

Commit

Permalink
2.3.x: Bumping spring plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Albertoimpl committed Sep 24, 2024
1 parent b936668 commit a1c918f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
id 'checkstyle'
id 'io.spring.nohttp' version '0.0.11'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'io.spring.javaformat' version '0.0.42'
id 'io.spring.javaformat' version '0.0.43'
}

description = "Spring CredHub"
Expand Down Expand Up @@ -82,7 +82,7 @@ configure(allprojects) {
}

dependencies {
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:0.0.42")
checkstyle("io.spring.javaformat:spring-javaformat-checkstyle:0.0.43")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ public interface CredHubCredentialOperations {
* @return a collection of paths
* @deprecated as of CredHub 2.0 this operation is not supported
*/
@Deprecated
List<CredentialPath> getAllPaths();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public CredHubRequest() {
* @return the {@literal boolean} overwrite value
* @deprecated as of CredHub 1.6, use {@link #mode}
*/
@Deprecated
public Boolean isOverwrite() {
return this.overwrite;
}
Expand Down Expand Up @@ -215,6 +216,7 @@ public B name(CredentialName name) {
* @return the builder
* @deprecated as of CredHub 1.6, use {@link #mode(WriteMode)}
*/
@Deprecated
public B overwrite(boolean overwrite) {
this.targetObj.setOverwrite(overwrite);
return this.thisObj;
Expand Down Expand Up @@ -243,6 +245,7 @@ public B mode(WriteMode mode) {
* @deprecated as of CredHub 2.0, use {@link CredHubPermissionOperations} to
* assign permissions to a credential after it is created
*/
@Deprecated
public B permission(Permission permission) {
this.targetObj.getAdditionalPermissions().add(permission);
return this.thisObj;
Expand All @@ -257,6 +260,7 @@ public B permission(Permission permission) {
* @deprecated as of CredHub 2.0, use {@link CredHubPermissionOperations} to
* assign permissions to a credential after it is created
*/
@Deprecated
public B permissions(Collection<? extends Permission> permissions) {
this.targetObj.getAdditionalPermissions().addAll(permissions);
return this.thisObj;
Expand All @@ -271,6 +275,7 @@ public B permissions(Collection<? extends Permission> permissions) {
* @deprecated as of CredHub 2.0, use {@link CredHubPermissionOperations} to
* assign permissions to a credential after it is created
*/
@Deprecated
public B permissions(Permission... permissions) {
this.targetObj.getAdditionalPermissions().addAll(Arrays.asList(permissions));
return this.thisObj;
Expand Down

0 comments on commit a1c918f

Please sign in to comment.