我有以下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.
可能导致此问题的原因是什么?我不记得我做的任何与并行相关的配置。
答案 0 :(得分:1)
我解决了这个问题。我正在使用Intellij IDEA,显然我之前启动了应用程序并忘了它。停止bootRun后,我设法构建代码。