netty 在Windows本地编译找不到tcnative 依赖问题

在Windows 中编译netty 最新版本可能出现以下问题

failure to find io.netty:netty-tcnative:jar:windows-x86_64:2.0.39.final

解决上面问题有几点需要确认

  1. Windows 是不是64 位的,netty 支持64位的
    2.java和idea 是不是64位
    3.在maven 的中心repo 中确认对应版本是不是有Windows版本
    netty-tcnative 在2.0.36 版本之后就没有了windows 版本,Windows 本地编译需要修改版本
    netty-parent pom
    2.0.36.Final
    ${os.detected.classifier}

你可能感兴趣的:(netty 在Windows本地编译找不到tcnative 依赖问题)