Update KotlinCompileMojoBase.java

kotlin-maven-plugin: Simplify log message when there are no sources to compile

This new message is now identical to the Java compiler plugins message for the same scenario.

(cherry picked from commit 0fc5086d1118669a48e57ed70174c630bafbf9c4)
This commit is contained in:
Oddbjørn Kvalsund
2023-08-11 12:45:54 +02:00
committed by Space Team
parent cfdaa30c69
commit 31e96eb7de
@@ -203,7 +203,7 @@ public abstract class KotlinCompileMojoBase<A extends CommonCompilerArguments> e
" (JRE " + System.getProperty("java.runtime.version") + ")");
if (!hasKotlinFilesInSources()) {
getLog().info("No sources found skipping Kotlin compile");
getLog().info("No sources to compile");
return;
}