kotlin-maven-plugin: Don't print warning on no resources to compile

(cherry picked from commit 364b89099d6528ee01955ce32fd42bf8d5e7f8cc)
This commit is contained in:
Oddbjørn Kvalsund
2023-08-08 13:01:59 +02:00
committed by Space Team
parent 3efd98df1a
commit cfdaa30c69
@@ -203,7 +203,7 @@ public abstract class KotlinCompileMojoBase<A extends CommonCompilerArguments> e
" (JRE " + System.getProperty("java.runtime.version") + ")");
if (!hasKotlinFilesInSources()) {
getLog().warn("No sources found skipping Kotlin compile");
getLog().info("No sources found skipping Kotlin compile");
return;
}