在使用MVN编译开源项目keta-custom时出现问题下载patchca失败的。
MVN在编译的时候会自动在网络上下载依赖包的地址,但由于在官方库下载包经常会失败,,因为找不到 patchca包,所以编译失败。
<!-- pcaptcha验证码 -->
<dependency>
<groupId>net.pusuo</groupId>
<artifactId>patchca</artifactId>
<scope>system</scope>
<systemPath>D:/download/patchca-0.5.0/lib/patchca-0.5.0.jar</systemPath>
</dependency>
这里直接指定了jar包的位置,就可以直接编译成功了~~