mac编译spring5.1.x源码

1.首先从官网下载spring源码https://github.com/spring-projects/spring-framework

mac编译spring5.1.x源码_第1张图片

 

2.解压之后进入源码目录

执行命令 ./gradlew :spring-oxm:compileTestJava (windown是执行gradlew.bat)

等待漫长的下载依赖过程...(时间快慢看网速)

直到出现xxx  SUCCESS

编译完成,我是直接用idea导入,然后在idea里面执行build(此过程可能运气好的直接就用idea编译成功了)

楼主就没有那么幸运了,出现各种各样的问题

如2.1、could not determine the dependencies of task ':dokka'.  >no cached version of org.jetbrains.kotlin:kotlin-compiler-embed

这个问题google找了很久都没有解决

2.2、Plugin [id: 'io.spring.dependency-management', version: '1.0.5.RELEASE', apply: false] was not found in any of the following sources

其中编译oxm模块时可能缺少某个依赖的错误,所以在spring-oxm.gradle的dependence中添加了依赖

optional("org.codehaus.castor:castor-core:1.4.1")

 

3.执行命令 (此命令使用自己安装的gradle,版本>=4.10.3)本人使用的是gradle 5.5.1

进入spring源码目录执行:   gradle build -x test -x javadoc

build成功之后再导入idea当中。切记,idea中不要配置本地gradle,因为我就是配置了本地的gradle才报错了,一直编译不成功。

 

4.在idea里面执行build又出现了问题(后续有时间在解决这些错误)

这里不影响,缺少的都是执行test时候的依赖,楼主在这里就没有去折腾了。

mac编译spring5.1.x源码_第2张图片

然后新建的一个自己的模块,执行了一下,成功了,说明 spring 源码构建已经是成功的了!!!

mac编译spring5.1.x源码_第3张图片

你可能感兴趣的:(java,spring)