Gradle 非并行构建中的并行构建错误
Gradle parallel build error in non-parallel build
我有以下 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 应用程序并忘记了它。停止 bootRun 后,我设法构建了代码。
我有以下 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 应用程序并忘记了它。停止 bootRun 后,我设法构建了代码。