diff --git a/libraries/tools/kotlin-maven-plugin/src/it/simple/pom.xml b/libraries/tools/kotlin-maven-plugin/src/it/simple/pom.xml
index bbae1261542..2d948ed5dcd 100644
--- a/libraries/tools/kotlin-maven-plugin/src/it/simple/pom.xml
+++ b/libraries/tools/kotlin-maven-plugin/src/it/simple/pom.xml
@@ -9,6 +9,10 @@
test-project
1.0
+
+ UTF-8
+
+
junit
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 121c46f3e5f..7303781850d 100644
--- a/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy
+++ b/libraries/tools/kotlin-maven-plugin/src/it/simple/verify.groovy
@@ -23,8 +23,8 @@ State state = new File(basedir, "build.log").readLines().collect { it.replaceAll
def m = pattern.matcher(line)
if (m.find()) {
acc.currentPlugin = m.group(1)
- } else if (line.startsWith("[INFO] Downloaded:") ||
- line.startsWith("[INFO] Downloading:") ||
+ } else if (line.startsWith("[INFO] Downloaded") ||
+ line.startsWith("[INFO] Downloading") ||
line.startsWith("Downloaded:") ||
line.startsWith("Downloading:") ||
line.startsWith("[INFO] PERF:")) {