Switch native-platform usages to regular dependency

This commit is contained in:
Ilya Chernikov
2017-11-09 16:26:47 +01:00
committed by Vyacheslav Gerasimov
parent 4a47fb3ffb
commit 78d2c655d5
5 changed files with 36 additions and 59 deletions
+15 -1
View File
@@ -16,7 +16,8 @@ buildscript {
"https://jcenter.bintray.com/",
"https://plugins.gradle.org/m2")
"https://plugins.gradle.org/m2",
"http://dl.bintray.com/kotlin/kotlinx")
"http://dl.bintray.com/kotlin/kotlinx",
"https://repo.gradle.org/gradle/libs-releases-local") // for native-platform
extra["repos"] = repos
@@ -125,6 +126,7 @@ extra["versions.android"] = "2.3.1"
extra["versions.kotlinx-coroutines-core"] = "0.14.1"
extra["versions.kotlinx-coroutines-jdk8"] = "0.14.1"
extra["versions.json"] = "20160807"
extra["versions.native-platform"] = "0.14"
// the former "ideaSdk/core" dir contents without intellij-core.jar
extra["IntellijCoreDependencies"] =
@@ -141,6 +143,18 @@ extra["IntellijCoreDependencies"] =
"xpp3-1.1.4-min.jar",
"xstream-*.jar")
extra["nativePlatformVariants"] =
listOf("windows-amd64",
"windows-i386",
"osx-amd64",
"osx-i386",
"linux-amd64",
"linux-i386",
"freebsd-amd64-libcpp",
"freebsd-amd64-libstdcpp",
"freebsd-i386-libcpp",
"freebsd-i386-libstdcpp")
extra["compilerModules"] = arrayOf(
":compiler:util",
":compiler:container",