From a4092fb3963ba06dc5c42a2a79df242563c49b96 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Tue, 9 May 2023 10:14:55 +0200 Subject: [PATCH] Remove HTML tags from TestRunMojo javadoc Closes gh-35349 --- .../org/springframework/boot/maven/TestRunMojo.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/TestRunMojo.java b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/TestRunMojo.java index 4e961c0230..5c41d9a3b7 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/TestRunMojo.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/TestRunMojo.java @@ -33,13 +33,9 @@ import org.springframework.boot.loader.tools.RunProcess; /** * Run an application in place using the test runtime classpath. The main class that will - * be used to launch the application is determined as follows: - * - *
    - *
  1. The configured main class, if any
  2. - *
  3. The main class found in the test classes directory, if any
  4. - *
  5. The main class found in the classes directory, if any
  6. - *
+ * be used to launch the application is determined as follows: The configured main class, + * if any. Then the main class found in the test classes directory, if any. Then the main + * class found in the classes directory, if any. * * @author Phillip Webb * @author Dmytro Nosan