From 6d97866a3abb5443ff59bee22885a64919dfa844 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 8 Sep 2017 07:15:58 +0300 Subject: [PATCH] Fix module name to avoid changes in binary classes --- prepare/mock-runtime-for-test/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/prepare/mock-runtime-for-test/build.gradle.kts b/prepare/mock-runtime-for-test/build.gradle.kts index 01b077c37d0..6e4ee448696 100644 --- a/prepare/mock-runtime-for-test/build.gradle.kts +++ b/prepare/mock-runtime-for-test/build.gradle.kts @@ -47,6 +47,9 @@ tasks.withType { tasks.withType { dependsOn(copySources) + kotlinOptions { + freeCompilerArgs += listOf("-module-name", "kotlin-stdlib") + } } val jar = runtimeJar {