本文主要是介绍疯狂的橘猫-IDEA编译spring源码记录-03-Cannot convert the provided notation to an object of type Dependency,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一,出现问题
之前在网上找的帖子,编译了一把,并且通过了,但是过了很久重新回来运行项目结果出现了问题。
问题报错为:
自定义项目配置为:
dependencies {compile{project(":spring-core")}compile{project(":spring-context")}testCompile group: 'junit', name: 'junit', version: '4.12'}
二,解决对策:
网上百度了n久,在Androidxx的时候找到了,原来是说写法有问题,
改为如下:
dependencies {compile project(':spring-core')compile project(':spring-context')testCompile group: 'junit', name: 'junit', version: '4.12'}
编译即过,原文链接:
https://blog.csdn.net/u010665691/article/details/44513531
ps:题外话,个人做的笔记,只为了下次遇见同样的问题,不翻车。
1.如果编译提示,没有spring.io权限xxx,这样的英文。
把spring源码最左下角的配置文件打开:
注释掉:id “io.spring.ge.conventions” version “0.0.7”
再次编译,就不会提示这个了。
这篇关于疯狂的橘猫-IDEA编译spring源码记录-03-Cannot convert the provided notation to an object of type Dependency的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!