Spring源码环境搭建成功之后,写个测试类打算调试源码,结果报错
Gradle中import失败_其他
.gradle文件内容如下

description = "infuq"

dependencies {
    compile(project(":spring-beans"))
    compile(project(":spring-core"))
    compile(project(":spring-context"))
    testCompile(testFixtures(project(":spring-beans")))
    testCompile(testFixtures(project(":spring-core")))
    testCompile(testFixtures(project(":spring-context")))
    testFixturesImplementation(testFixtures(project(":spring-core")))

}

配置也没错,但是为啥import失败呢.
我是先搭建好Spring源码,然后又新增了一个自己的模块
Gradle中import失败_其他_02
查看settings.gradle文件
Gradle中import失败_其他_03

Gradle中import失败_其他_04
就是这样的,导致import失败.也是因为没用过gradle,遇到这样的错误,上网搜索答案,多次尝试,还是失败了.浪费了好久

最后我就改成了如下
Gradle中import失败_其他_05
瞎猫碰见笨耗子,居然import成功了.

看来还是要抽时候好好学习下gradle了



Gradle中import失败_其他_06