From 746ed841208408d74721cff8b4837b5a82f61506 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 2 Sep 2022 12:05:57 +0100 Subject: [PATCH] Polish ProcessTestAotMojo --- .../boot/maven/ProcessTestAotMojo.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 a7d6c5fde5..423d058f6b 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 @@ -61,26 +61,26 @@ public class ProcessTestAotMojo extends AbstractAotMojo { private static final String AOT_PROCESSOR_CLASS_NAME = "org.springframework.test.context.aot.TestAotProcessor"; /** - * Directory containing the classes and resource files that should be packaged into - * the archive. + * Directory containing the classes and resource files that should be used to run the + * tests. */ @Parameter(defaultValue = "${project.build.testOutputDirectory}", required = true) private File classesDirectory; /** - * Directory containing the generated sources. + * Directory containing the generated test sources. */ @Parameter(defaultValue = "${project.build.directory}/spring-aot/test/sources", required = true) private File generatedSources; /** - * Directory containing the generated resources. + * Directory containing the generated test resources. */ @Parameter(defaultValue = "${project.build.directory}/spring-aot/test/resources", required = true) private File generatedResources; /** - * Directory containing the generated classes. + * Directory containing the generated test classes. */ @Parameter(defaultValue = "${project.build.directory}/spring-aot/test/classes", required = true) private File generatedClasses; @@ -92,7 +92,7 @@ public class ProcessTestAotMojo extends AbstractAotMojo { private ArtifactRepository localRepository; /** - * Remove artifact repositories used to resolve JUnit platform launcher jars. + * Remote artifact repositories used to resolve JUnit platform launcher jars. */ @Parameter(defaultValue = "${project.remoteArtifactRepositories}", required = true, readonly = true) private List remoteRepositories;