问题
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