gpt4 book ai didi

gradle - 无法在 Intellij IDEA 中使用 gradle kotlin DSL 构建 kotlin 文件

转载 作者:行者123 更新时间:2023-12-02 13:07:43 30 4
gpt4 key购买 nike

我正在尝试使用 gradle kotlin DSL 作为 IntelliJ idea 中的构建系统来建立一个 kotlin 项目,但是在尝试运行 buil.gradle.kts 文件时出现以下错误。我尝试过使用不同的 kotlin 编译器版本,但没有运气。

warning: default scripting plugin is disabled: The provided plugin org.jetbrains.kotlin.scripting.compiler.plugin.ScriptingCompilerConfigurationComponentRegistrar is not compatible with this version of compiler
error: unable to evaluate script, no scripting plugin loaded

IntelliJ 版本:

enter image description here

Gradle 版本:6.3

构建.gradle.kts
plugins {
id("org.jetbrains.kotlin.jvm") version "1.3.70"

// Apply the application plugin to add support for building a CLI application.
application
}

repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}

dependencies {
// Align versions of all Kotlin components
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))

// Use the Kotlin JDK 8 standard library.
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")

// Use the Kotlin test library.
testImplementation("org.jetbrains.kotlin:kotlin-test")

// Use the Kotlin JUnit integration.
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}

application {
// Define the main class for the application.
mainClassName = "Music.AppKt"
}

最佳答案

在 IDEA 中构建 Gradle 项目的正确方法是在 IDEA 设置中将构建委托(delegate)给 Gradle 时执行“主菜单 | 构建 | 构建项目”,或者在 Gradle 工具窗口中执行其中一项构建任务:http://jetbrains.com/help/idea/work-with-gradle-tasks.html

但是,您描述的行为可以认为是可用性问题,我创建了一个问题 https://youtrack.jetbrains.com/issue/KT-37814 ,请关注它以获取更新。

关于gradle - 无法在 Intellij IDEA 中使用 gradle kotlin DSL 构建 kotlin 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60855576/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com