Skip to content
This repository was archived by the owner on Jan 19, 2022. It is now read-only.

Commit 8946db9

Browse files
committed
Fix build
1 parent 39bea17 commit 8946db9

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

spring-cloud-aws-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
{
5252
"defaultValue": true,
53-
"name": "spring.cloud.aws.parameterstore,.enabled",
53+
"name": "spring.cloud.aws.parameterstore.enabled",
5454
"description": "Enables ParameterStore integration.",
5555
"type": "java.lang.Boolean"
5656
}

spring-cloud-aws-parameter-store-config/src/main/java/org/springframework/cloud/aws/paramstore/AwsParamStoreProperties.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ public void validate(Object target, Errors errors) {
117117
}
118118
}
119119

120-
@DeprecatedConfigurationProperty(replacement = "spring.cloud.aws.parameterstore.prefix")
120+
@DeprecatedConfigurationProperty(
121+
replacement = "spring.cloud.aws.parameterstore.prefix")
121122
public String getPrefix() {
122123
return prefix;
123124
}
@@ -126,7 +127,8 @@ public void setPrefix(String prefix) {
126127
this.prefix = prefix;
127128
}
128129

129-
@DeprecatedConfigurationProperty(replacement = "spring.cloud.aws.parameterstore.default-context")
130+
@DeprecatedConfigurationProperty(
131+
replacement = "spring.cloud.aws.parameterstore.default-context")
130132
public String getDefaultContext() {
131133
return defaultContext;
132134
}
@@ -135,7 +137,8 @@ public void setDefaultContext(String defaultContext) {
135137
this.defaultContext = defaultContext;
136138
}
137139

138-
@DeprecatedConfigurationProperty(replacement = "spring.cloud.aws.parameterstore.profile-separator")
140+
@DeprecatedConfigurationProperty(
141+
replacement = "spring.cloud.aws.parameterstore.profile-separator")
139142
public String getProfileSeparator() {
140143
return profileSeparator;
141144
}
@@ -144,7 +147,8 @@ public void setProfileSeparator(String profileSeparator) {
144147
this.profileSeparator = profileSeparator;
145148
}
146149

147-
@DeprecatedConfigurationProperty(replacement = "spring.cloud.aws.parameterstore.fail-fast")
150+
@DeprecatedConfigurationProperty(
151+
replacement = "spring.cloud.aws.parameterstore.fail-fast")
148152
public boolean isFailFast() {
149153
return failFast;
150154
}
@@ -162,7 +166,8 @@ public void setName(String name) {
162166
this.name = name;
163167
}
164168

165-
@DeprecatedConfigurationProperty(replacement = "spring.cloud.aws.parameterstore.enabled")
169+
@DeprecatedConfigurationProperty(
170+
replacement = "spring.cloud.aws.parameterstore.enabled")
166171
public boolean isEnabled() {
167172
return enabled;
168173
}
@@ -171,7 +176,8 @@ public void setEnabled(boolean enabled) {
171176
this.enabled = enabled;
172177
}
173178

174-
@DeprecatedConfigurationProperty(replacement = "spring.cloud.aws.parameterstore.region")
179+
@DeprecatedConfigurationProperty(
180+
replacement = "spring.cloud.aws.parameterstore.region")
175181
public String getRegion() {
176182
return region;
177183
}

0 commit comments

Comments
 (0)