Skip to content

Commit 6c07f04

Browse files
chore(deps): bump formatter-maven-plugin from 2.17.1 to 2.22.0 (#70)
* chore(deps): bump formatter-maven-plugin from 2.17.1 to 2.22.0 Bumps [formatter-maven-plugin](https://github.com/revelc/formatter-maven-plugin) from 2.17.1 to 2.22.0. - [Release notes](https://github.com/revelc/formatter-maven-plugin/releases) - [Changelog](https://github.com/revelc/formatter-maven-plugin/blob/main/CHANGELOG.md) - [Commits](revelc/formatter-maven-plugin@formatter-maven-plugin-2.17.1...formatter-maven-plugin-2.22.0) --- updated-dependencies: - dependency-name: net.revelc.code.formatter:formatter-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * formatted --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Attila Mészáros <[email protected]>
1 parent 45822cf commit 6c07f04

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

core/src/main/java/io/javaoperatorsdk/webhook/conversion/AsyncConversionController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public CompletionStage<ConversionReview> handle(ConversionReview conversionRevie
4040
conversionReview.getRequest().getObjects().stream()
4141
.map(HasMetadata.class::cast).collect(Collectors.toList()),
4242
Utils.versionOfApiVersion(conversionReview.getRequest().getDesiredAPIVersion()))
43-
.thenApply(convertedObjects -> createResponse(convertedObjects, conversionReview));
43+
.thenApply(convertedObjects -> createResponse(convertedObjects, conversionReview));
4444
} catch (MissingConversionMapperException e) {
4545
log.error("Error in conversion hook. UID: {}",
4646
conversionReview.getRequest().getUid(), e);

core/src/main/java/io/javaoperatorsdk/webhook/conversion/TargetVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* The target version of the resource this mapper supports. Example values: "v1","v1beta1". This
1414
* is not the full API Version just the version suffix, for example only the "v1" of api version:
1515
* "apiextensions.k8s.io/v1"
16-
*
16+
*
1717
* @return version
1818
**/
1919
String value();

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<directory-maven-plugin.version>1.0</directory-maven-plugin.version>
5353
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
5454
<maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
55-
<formatter-maven-plugin.version>2.17.1</formatter-maven-plugin.version>
55+
<formatter-maven-plugin.version>2.22.0</formatter-maven-plugin.version>
5656
<impsort-maven-plugin.version>1.8.0</impsort-maven-plugin.version>
5757
<maven-install-plugin.version>2.5.2</maven-install-plugin.version>
5858
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>

samples/quarkus/src/test/java/io/javaoperatorsdk/webhook/sample/QuarkusWebhooksE2E.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static void deployService() throws IOException {
2020
InputStream certManager =
2121
new URL(
2222
"https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml")
23-
.openStream()) {
23+
.openStream()) {
2424
applyAndWait(client, certManager);
2525
applyAndWait(client, "target/kubernetes/minikube.yml");
2626
applyAndWait(client, "k8s/validating-webhook-configuration.yml");

samples/spring-boot/src/test/java/io/javaoperatorsdk/webhook/sample/springboot/SpringBootWebhooksE2E.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static void deployService() throws IOException {
2121
InputStream certManager =
2222
new URL(
2323
"https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml")
24-
.openStream()) {
24+
.openStream()) {
2525
applyAndWait(client, certManager);
2626
applyAndWait(client, "target/classes/META-INF/dekorate/kubernetes.yml");
2727
applyAndWait(client, "k8s/validating-webhook-configuration.yml");

0 commit comments

Comments
 (0)