在Windows 中编译netty 最新版本可能出现以下问题
failure to find io.netty:netty-tcnative:jar:windows-x86_64:2.0.39.final
解决上面问题有几点需要确认
- Windows 是不是64 位的,netty 支持64位的
2.java和idea 是不是64位
3.在maven 的中心repo 中确认对应版本是不是有Windows版本
netty-tcnative 在2.0.36 版本之后就没有了windows 版本,Windows 本地编译需要修改版本
netty-parent pom
<tcnative.version>2.0.36.Final</tcnative.version>
<tcnative.classifier>${os.detected.classifier}</tcnative.classifier>
网友评论