From 8b358558c920365dd499140134c11a9e5f234b1c Mon Sep 17 00:00:00 2001 From: Sergey Mashkov Date: Tue, 28 Jul 2015 18:04:00 +0300 Subject: [PATCH] Maven: integration test should escape compiler version --- libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 98249b0f788..41488d9d36a 100644 --- a/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy +++ b/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy @@ -22,7 +22,7 @@ State state = new File(basedir, "build.log").readLines().inject(new State()) { a } else if (line.startsWith("[INFO] Downloaded:") || line.startsWith("[INFO] Downloading:")) { // ignore line } else if (acc.currentPlugin == "kotlin-maven-plugin") { - def filtered = removePaths(line, basedir).replace("\\", "/").replaceAll(/[0-9]+\s*ms/, "LLL ms").trim().replaceAll(/^\[[A-Z]+\]$/, "") + def filtered = removePaths(line, basedir).replace("\\", "/").replaceAll(/[0-9]+\s*ms/, "LLL ms").trim().replaceAll(/^\[[A-Z]+\]$/, "").replaceAll(/version [0-9\.]+/, "version @snapshot@") if (filtered != "") { acc.lines << filtered }