From e92cfac405ecaa766e7c411369e8ecd3652204d4 Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Mon, 3 Dec 2018 14:48:39 +0300 Subject: [PATCH] Add stdlib to composite build of Kotlin + Kotlin/Native --- settings.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/settings.gradle b/settings.gradle index f51f47bc144..02423f46739 100644 --- a/settings.gradle +++ b/settings.gradle @@ -40,6 +40,7 @@ if (hasProperty("kotlinProjectPath")) { includeBuild(kotlinProjectPath) { dependencySubstitution { substitute module('org.jetbrains.kotlin:kotlin-compiler') with project(':include:kotlin-compiler') + substitute module("org.jetbrains.kotlin:kotlin-stdlib-common:$kotlinVersion") with project(':include:kotlin-stdlib-common-sources') } } }