提交 848b08a4 编写于 作者: A Alexander Udalov

Minor, suppress 1.3 language version warnings

上级 ead0b501
......@@ -3,8 +3,6 @@ plugins {
id("jps-compatible")
}
description = "Kotlin/Native utils"
dependencies {
compile(kotlinStdlib())
testImplementation(commonDep("junit:junit"))
......@@ -17,12 +15,14 @@ sourceSets {
tasks {
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.languageVersion = "1.3"
kotlinOptions.apiVersion = "1.3"
kotlinOptions {
languageVersion = "1.3"
apiVersion = "1.3"
freeCompilerArgs += "-Xsuppress-version-warnings"
}
}
}
publish()
standardPublicJars()
......@@ -21,8 +21,11 @@ sourceSets {
tasks {
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.languageVersion = "1.3"
kotlinOptions.apiVersion = "1.3"
kotlinOptions {
languageVersion = "1.3"
apiVersion = "1.3"
freeCompilerArgs += "-Xsuppress-version-warnings"
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册