Gradle change checkstyle version

别说谁变了你拦得住时间么 提交于 2019-12-08 14:41:31

问题


Java Checkstyle plugin just updated to 6.0 version(java 8 support). Looks like gradle using older version. How i can upgrade gradle checkstyle plugin to newer version?


回答1:


checkstyle {
    toolVersion = "6.0"
}



回答2:


Have you looked into the gradle-estilo-plugin? It sets up the entire checkstyle configuration you need directly from a gradle config block. You can control the version from there too. Check out the README example for tips.



来源:https://stackoverflow.com/questions/26548931/gradle-change-checkstyle-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!