Browse Source

Merge pull request #36964 from normandra

* pr/36964:
  Fix typo

Closes gh-36964
pull/37018/head
Stephane Nicoll 3 years ago
parent
commit
df7f8807b1
  1. 2
      spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ProcessTestAotMojo.java

2
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 { @@ -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;
}

Loading…
Cancel
Save