Update Gradle to 8.0.2
This commit is contained in:
parent
41fff9eb9c
commit
8229a29f62
@ -19,12 +19,9 @@ benchmark {
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(8)
|
||||
|
||||
jvm {
|
||||
compilations.all {
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
js(IR) {
|
||||
|
@ -64,6 +64,8 @@ subprojects {
|
||||
configure<KotlinMultiplatformExtension> {
|
||||
explicitApi()
|
||||
|
||||
jvmToolchain(8)
|
||||
|
||||
jvm {
|
||||
mavenPublication {
|
||||
artifact(javadocJar.get())
|
||||
|
@ -9,6 +9,10 @@ application {
|
||||
mainClass.set("com.github.michaelbull.result.example.ApplicationKt")
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(8)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":kotlin-result"))
|
||||
implementation(libs.kotlin.stdlib.jdk8)
|
||||
@ -18,9 +22,3 @@ dependencies {
|
||||
implementation(libs.ktor.server.content.negotiation)
|
||||
implementation(libs.ktor.server.netty)
|
||||
}
|
||||
|
||||
tasks.withType(KotlinCompile::class.java).all {
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
|
||||
networkTimeout=10000
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
@ -6,13 +6,7 @@ plugins {
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvm {
|
||||
compilations.all {
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
}
|
||||
}
|
||||
}
|
||||
jvmToolchain(8)
|
||||
|
||||
// Additional targets not currently supported by coroutines
|
||||
androidNativeArm32()
|
||||
|
Loading…
Reference in New Issue
Block a user