首先,我有一个带有Spring启动的Java项目,我正在使用Gradle。
我的问题是,当我从Gitlab克隆我的项目时,弹簧框架库无效。在每个导入语句中都会发生以下情况:
Unused import statements
我想出了如何修复它。我只需要复制整个build.gradle
文件的内容,删除内容并再次将其粘贴到build.gradle文件中。在这一步之后,一切正常。
我的build.gradle
如下所示:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.7.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'gs-rest-service'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile('org.springframework.boot:spring-boot-starter-test')
}
有没有比复制和粘贴更好的解决此问题的方法?