Skip to content

chore(deps): bump formatter-maven-plugin from 2.17.1 to 2.22.0 #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public CompletionStage<ConversionReview> handle(ConversionReview conversionRevie
conversionReview.getRequest().getObjects().stream()
.map(HasMetadata.class::cast).collect(Collectors.toList()),
Utils.versionOfApiVersion(conversionReview.getRequest().getDesiredAPIVersion()))
.thenApply(convertedObjects -> createResponse(convertedObjects, conversionReview));
.thenApply(convertedObjects -> createResponse(convertedObjects, conversionReview));
} catch (MissingConversionMapperException e) {
log.error("Error in conversion hook. UID: {}",
conversionReview.getRequest().getUid(), e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* The target version of the resource this mapper supports. Example values: "v1","v1beta1". This
* is not the full API Version just the version suffix, for example only the "v1" of api version:
* "apiextensions.k8s.io/v1"
*
*
* @return version
**/
String value();
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<directory-maven-plugin.version>1.0</directory-maven-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
<formatter-maven-plugin.version>2.17.1</formatter-maven-plugin.version>
<formatter-maven-plugin.version>2.22.0</formatter-maven-plugin.version>
<impsort-maven-plugin.version>1.8.0</impsort-maven-plugin.version>
<maven-install-plugin.version>2.5.2</maven-install-plugin.version>
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static void deployService() throws IOException {
InputStream certManager =
new URL(
"https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml")
.openStream()) {
.openStream()) {
applyAndWait(client, certManager);
applyAndWait(client, "target/kubernetes/minikube.yml");
applyAndWait(client, "k8s/validating-webhook-configuration.yml");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static void deployService() throws IOException {
InputStream certManager =
new URL(
"https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml")
.openStream()) {
.openStream()) {
applyAndWait(client, certManager);
applyAndWait(client, "target/classes/META-INF/dekorate/kubernetes.yml");
applyAndWait(client, "k8s/validating-webhook-configuration.yml");
Expand Down