From 1296c5444b6e30304893b02fb6a96f4b2ba50fd1 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Sat, 4 Mar 2017 06:25:49 +0300 Subject: [PATCH] Fix warning that failed maven plugin smoke test. --- libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy b/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy index 9de730c891a..3ce87fb96d0 100644 --- a/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy +++ b/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy @@ -34,6 +34,8 @@ State state = new File(basedir, "build.log").readLines().collect { it.replaceAll replace("\\", "/"). replaceAll(/[0-9]+\s*ms/, "LLL ms"). trim(). + // TODO: Remove after build is launched only under java 8 + replaceAll(/\[WARNING] Running the Kotlin compiler under Java 6 or 7 is unsupported and will no longer be possible in a future update./, ""). replaceAll(/^\[[A-Z]+\]$/, ""). replaceAll(/version [0-9a-z-+\.]+/, "version @snapshot@")