39 lines
1.1 KiB
Groovy
39 lines
1.1 KiB
Groovy
/*
|
|
* Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the LICENSE file.
|
|
*/
|
|
pluginManagement {
|
|
apply from: '../../repo/scripts/cache-redirector.settings.gradle.kts'
|
|
apply from: '../../repo/scripts/kotlin-bootstrap.settings.gradle.kts'
|
|
|
|
repositories {
|
|
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-dependencies" }
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
includeBuild '../build-tools'
|
|
|
|
include ':ring'
|
|
include ':cinterop'
|
|
include ':helloworld'
|
|
include ':numerical'
|
|
include ':videoplayer'
|
|
include ':framework'
|
|
include ':startup'
|
|
include ':logging'
|
|
if (System.getProperty("os.name") == "Mac OS X") {
|
|
include ':objcinterop'
|
|
include ':swiftinterop'
|
|
if (hasProperty("runExcludedBenchmarks")) {
|
|
include ':KotlinVsSwift'
|
|
include ':KotlinVsSwift:ring'
|
|
}
|
|
}
|
|
|
|
if (hasProperty("kotlin_dist")) {
|
|
include(":endorsedLibraries:kotlinx.cli")
|
|
project(":endorsedLibraries:kotlinx.cli").projectDir = file("../endorsedLibraries/kotlinx.cli")
|
|
}
|