无法计算任务“:compileJava”属性“javaCompiler”的值

Anu*_*rma 5 bamboo toolchain gradle

我正在尝试在 Bamboo 上构建服务并使用 gradle 构建工具,但出现以下错误:

error   26-Apr-2022 16:48:02    > Failed to calculate the value of task ':compileJava' property 'javaCompiler'.
error   26-Apr-2022 16:48:02       > Unable to download toolchain matching these requirements: {languageVersion=17, vendor=any, implementation=vendor-specific}
error   26-Apr-2022 16:48:02          > Could not GET 'https://api.adoptopenjdk.net/v3/binary/latest/17/ga/linux/x64/jdk/hotspot/normal/adoptopenjdk'.
error   26-Apr-2022 16:48:02             > Connection reset
Run Code Online (Sandbox Code Playgroud)

谢谢阿努帕姆

小智 2

In build.gradle.kts Try

kotlin {
    jvmToolchain(17)
}
Run Code Online (Sandbox Code Playgroud)