aed6272107
* Code was moved to utils, but sources are included to the shared until bootstrap advance. * Fixed dependencies and set API & LV to 1.4 for the modules used with Gradle. Merge-request: KT-MR-9122 Merged-by: Pavel Punegov <Pavel.Punegov@jetbrains.com>
101 lines
3.5 KiB
Kotlin
101 lines
3.5 KiB
Kotlin
/*
|
|
* Copyright 2010-2017 JetBrains s.r.o.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
@file:Suppress("UnstableApiUsage")
|
|
|
|
import org.jetbrains.kotlin.gradle.plugin.extraProperties
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
import java.util.*
|
|
|
|
plugins {
|
|
id("kotlin")
|
|
}
|
|
|
|
val rootBuildDirectory by extra(file(".."))
|
|
apply(from = "../gradle/loadRootProperties.gradle")
|
|
|
|
group = "org.jetbrains.kotlin"
|
|
|
|
repositories {
|
|
maven("https://cache-redirector.jetbrains.com/maven-central")
|
|
mavenCentral()
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(8))
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
main {
|
|
// TODO: All code was moved to utils. Bootstrap should be advanced to make these classes appear
|
|
// in the bootstrap version of kotlin-native-utils. Only then this project should be removed, all usages
|
|
// of `:kotlin-native-shared` should be replaced with `:native:kotlin-native-utils`
|
|
kotlin.srcDir("../../native/utils/src")
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>().configureEach {
|
|
kotlinOptions {
|
|
languageVersion = "1.4"
|
|
apiVersion = "1.4"
|
|
allWarningsAsErrors = false
|
|
jvmTarget = "1.8"
|
|
freeCompilerArgs += "-Xskip-prerelease-check"
|
|
}
|
|
}
|
|
|
|
val isCompositeBootstrap = project.extraProperties.has("kotlin.native.build.composite-bootstrap")
|
|
|
|
/**
|
|
* Depending on the `kotlin.native.build.composite-bootstrap` property returns either coordinates or the project dependency.
|
|
*
|
|
* It to use this project in composite build (build-tools) and as a project itself.
|
|
* Project should depend on a current snapshot builds while build-tools use bootstrap dependencies.
|
|
* TODO: finalize merge of this project with kotlin-native-utils to get rid of this hack
|
|
*/
|
|
fun compositeDependency(coordinates: String, subproject: String = ""): Any {
|
|
val parts = coordinates.split(':')
|
|
check(parts.size == 3) {
|
|
"Full dependency coordinates should be specified group:name:version"
|
|
}
|
|
return if (!isCompositeBootstrap) {
|
|
// returns dependency on the project specified with coordinates
|
|
dependencies.project("$subproject:${parts[1]}")
|
|
} else {
|
|
// returns full coordinates
|
|
coordinates
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:${project.bootstrapKotlinVersion}")
|
|
api(compositeDependency("org.jetbrains.kotlin:kotlin-util-klib:${project.bootstrapKotlinVersion}"))
|
|
api(compositeDependency("org.jetbrains.kotlin:kotlin-util-io:${project.bootstrapKotlinVersion}"))
|
|
|
|
if (!isCompositeBootstrap) {
|
|
val versionProperties = Properties()
|
|
project.rootProject.projectDir.resolve("gradle/versions.properties").inputStream().use { propInput ->
|
|
versionProperties.load(propInput)
|
|
}
|
|
val platformVersion = versionProperties["versions.junit-bom"]
|
|
testApi(platform("org.junit:junit-bom:$platformVersion"))
|
|
testApi("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
}
|