gpt4 book ai didi

gradle - 非并行构建中的Gradle并行构建错误

转载 作者:行者123 更新时间:2023-12-03 04:04:31 25 4
gpt4 key购买 nike

我有以下build.gradle文件:

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.2.RELEASE")
}
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'

jar {
baseName = 'mt-spring-mvc-helloworld'
version = '0.1.0'
}

repositories {
mavenCentral()
}

sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
testCompile("junit:junit:4.11")
}

task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}

我也有 src目录下的简单源文件。当我运行 gradle build时,构建失败,并显示以下异常: It is currently in use by another Gradle instance.什么可能导致此问题?我不记得我为gradle做的任何与并行相关的配置。

最佳答案

我解决了这个问题。我使用的是Intellij IDEA,显然我之前曾启动过运行该应用程序,却忘记了它。停止bootRun之后,我设法构建了代码。

关于gradle - 非并行构建中的Gradle并行构建错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29362813/

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