diff --git a/libraries/tools/kotlin-maven-plugin-test/src/it/test-plugins/expected.log b/libraries/tools/kotlin-maven-plugin-test/src/it/test-plugins/expected.log index 83cdfeb956f..19e6a306de6 100644 --- a/libraries/tools/kotlin-maven-plugin-test/src/it/test-plugins/expected.log +++ b/libraries/tools/kotlin-maven-plugin-test/src/it/test-plugins/expected.log @@ -1,17 +1,9 @@ -[INFO] Kotlin version @snapshot@ (JRE ) -[INFO] Compiling Kotlin sources from [/test-extension/src/main/kotlin] -[INFO] Module name is test-extension [WARNING] Some JAR files in the classpath have the Kotlin Runtime library bundled into them. This may cause difficult to debug problems if there's a different version of the Kotlin Runtime library in the classpath. Consider removing these libraries from the classpath or use '-Xskip-runtime-version-check' to suppress this warning [WARNING] /local-repo/org/jetbrains/kotlin/kotlin-compiler/@snapshot@/kotlin-compiler-@snapshot@.jar: (-1, -1) Library has Kotlin runtime bundled into it -[INFO] Kotlin version @snapshot@ (JRE ) [WARNING] No sources found skipping Kotlin compile -[INFO] Kotlin version @snapshot@ (JRE ) -[INFO] Compiling Kotlin sources from [/use-test-extension/src/main/kotlin] -[INFO] Module name is use-test-extension [INFO] Applicability test for project use-test-extension [INFO] Applied plugin: 'test-me' [INFO] Configuring test plugin with arguments [INFO] Plugin applied [INFO] Option value: my-special-value -[INFO] Kotlin version @snapshot@ (JRE ) [WARNING] No sources found skipping Kotlin compile diff --git a/libraries/tools/kotlin-maven-plugin/src/it/simple/expected.log b/libraries/tools/kotlin-maven-plugin/src/it/simple/expected.log index 6d4adc457b4..e69de29bb2d 100644 --- a/libraries/tools/kotlin-maven-plugin/src/it/simple/expected.log +++ b/libraries/tools/kotlin-maven-plugin/src/it/simple/expected.log @@ -1,3 +0,0 @@ -[INFO] Kotlin version @snapshot@ (JRE ) -[INFO] Compiling Kotlin sources from [/src/main/kotlin] -[INFO] Module name is test-project diff --git a/libraries/tools/kotlin-maven-plugin/src/main/java/org/jetbrains/kotlin/maven/K2JVMCompileMojo.java b/libraries/tools/kotlin-maven-plugin/src/main/java/org/jetbrains/kotlin/maven/K2JVMCompileMojo.java index 92ca920600f..70c36bfe071 100644 --- a/libraries/tools/kotlin-maven-plugin/src/main/java/org/jetbrains/kotlin/maven/K2JVMCompileMojo.java +++ b/libraries/tools/kotlin-maven-plugin/src/main/java/org/jetbrains/kotlin/maven/K2JVMCompileMojo.java @@ -168,7 +168,7 @@ public class K2JVMCompileMojo extends KotlinCompileMojoBase e @Override public void execute() throws MojoExecutionException, MojoFailureException { - getLog().info("Kotlin version " + KotlinCompilerVersion.VERSION + + getLog().debug("Kotlin version " + KotlinCompilerVersion.VERSION + " (JRE " + System.getProperty("java.runtime.version") + ")"); if (!hasKotlinFilesInSources()) { @@ -433,7 +433,7 @@ public abstract class KotlinCompileMojoBase e if (sourceRoots.isEmpty()) { throw new MojoExecutionException("No source roots to compile"); } - getLog().info("Compiling Kotlin sources from " + sourceRoots); + getLog().debug("Compiling Kotlin sources from " + sourceRoots); return sourceRoots; }