]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-20840 update the warning message about the version dropping JDK11 analysis...
authorMatteo Mara <matteo.mara@sonarsource.com>
Fri, 20 Oct 2023 10:38:23 +0000 (12:38 +0200)
committersonartech <sonartech@sonarsource.com>
Fri, 20 Oct 2023 20:02:39 +0000 (20:02 +0000)
sonar-scanner-engine/src/main/java/org/sonar/scanner/bootstrap/RuntimeJavaVersion.java

index 1ef6e999c1c31a12b2aa9a56bba26953986f732c..c5b9af343879e54f5f0d8f5ef3b30f9d5e2ac9ce 100644 (file)
@@ -26,8 +26,8 @@ import org.sonar.core.documentation.DocumentationLinkGenerator;
 
 public class RuntimeJavaVersion {
   private static final Logger LOG = LoggerFactory.getLogger(RuntimeJavaVersion.class);
-  public static final String LOG_MESSAGE = "SonarScanner will require Java 17 to run, starting in SonarQube 10.3";
-  public static final String WARNING_MESSAGE_TEMPLATE = "SonarScanner will require Java 17 to run, starting in SonarQube 10.3. Please upgrade the" +
+  public static final String LOG_MESSAGE = "SonarScanner will require Java 17 to run, starting in SonarQube 10.4";
+  public static final String WARNING_MESSAGE_TEMPLATE = "SonarScanner will require Java 17 to run, starting in SonarQube 10.4. Please upgrade the" +
     " version of Java that executes the scanner and refer to <a href=\"{}/\" target=\"_blank\">the documentation</a> if needed.";
 
   private final DocumentationLinkGenerator documentationLinkGenerator;