[#89] Resolve Gradle build warnings
This commit is contained in:
parent
9db77e2afe
commit
be08c85c38
|
@ -4,6 +4,14 @@ plugins {
|
||||||
`kotlin-dsl`
|
`kotlin-dsl`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Per conversation in the KotlinLang Slack, Gradle uses Java 8 compatibility internally
|
||||||
|
// for all build scripts.
|
||||||
|
// https://kotlinlang.slack.com/archives/C19FD9681/p1636632870122900?thread_ts=1636572288.117000&cid=C19FD9681
|
||||||
|
java {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
val rootProperties = getRootProperties()
|
val rootProperties = getRootProperties()
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,14 @@ plugins {
|
||||||
`kotlin-dsl-base`
|
`kotlin-dsl-base`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Per conversation in the KotlinLang Slack, Gradle uses Java 8 compatibility internally
|
||||||
|
// for all build scripts.
|
||||||
|
// https://kotlinlang.slack.com/archives/C19FD9681/p1636632870122900?thread_ts=1636572288.117000&cid=C19FD9681
|
||||||
|
java {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue