2.3.x: Bumping spring plugins
This commit is contained in:
@@ -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"
|
||||
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
/**
|
||||
|
||||
@@ -59,6 +59,7 @@ public class CredHubRequest<T> {
|
||||
* @return the {@literal boolean} overwrite value
|
||||
* @deprecated as of CredHub 1.6, use {@link #mode}
|
||||
*/
|
||||
@Deprecated
|
||||
public Boolean isOverwrite() {
|
||||
return this.overwrite;
|
||||
}
|
||||
@@ -215,6 +216,7 @@ public class CredHubRequest<T> {
|
||||
* @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;
|
||||
@@ -243,6 +245,7 @@ public class CredHubRequest<T> {
|
||||
* @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;
|
||||
@@ -257,6 +260,7 @@ public class CredHubRequest<T> {
|
||||
* @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;
|
||||
@@ -271,6 +275,7 @@ public class CredHubRequest<T> {
|
||||
* @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;
|
||||
|
||||
Reference in New Issue
Block a user