From 62902a798d8fbf8750428b243b1499fc09078e8f Mon Sep 17 00:00:00 2001 From: normandra Date: Mon, 14 Aug 2023 12:10:43 +0200 Subject: [PATCH] Fix typo See gh-36964 --- .../java/org/springframework/boot/maven/ProcessTestAotMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ProcessTestAotMojo.java b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ProcessTestAotMojo.java index c868f56b6b..399e4561b4 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ProcessTestAotMojo.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ProcessTestAotMojo.java @@ -172,7 +172,7 @@ public class ProcessTestAotMojo extends AbstractAotMojo { String version = (platformCommonsArtifact != null) ? platformCommonsArtifact.getBaseVersion() : null; if (version == null) { throw new MojoExecutionException( - "Unable to find '%s' dependnecy. Please ensure JUnit is correctly configured.".formatted(id)); + "Unable to find '%s' dependency. Please ensure JUnit is correctly configured.".formatted(id)); } return version; }