Update Gradle to 8.0.2

This commit is contained in:
Michael Bull 2023-04-03 12:16:37 +01:00
parent 41fff9eb9c
commit 8229a29f62
7 changed files with 12 additions and 21 deletions

View File

@ -19,12 +19,9 @@ benchmark {
}
kotlin {
jvmToolchain(8)
jvm {
compilations.all {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
js(IR) {

View File

@ -64,6 +64,8 @@ subprojects {
configure<KotlinMultiplatformExtension> {
explicitApi()
jvmToolchain(8)
jvm {
mavenPublication {
artifact(javadocJar.get())

View File

@ -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"
}
}

Binary file not shown.

View File

@ -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

4
gradlew vendored
View File

@ -144,7 +144,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
@ -152,7 +152,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac

View File

@ -6,13 +6,7 @@ plugins {
}
kotlin {
jvm {
compilations.all {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
jvmToolchain(8)
// Additional targets not currently supported by coroutines
androidNativeArm32()