using checkstyle in gradle

The checkstyle plugin brings code quality checks into the gradle build. This way, if team members are using disparate IDEs or have different settings, consistent coding standards are enforced in the build. Here’s how to add checkstyle to your Java build in two steps:1) In build.gradle, add this:     apply plugin: ‘checkstyle’    checkstyle …

Read moreusing checkstyle in gradle

IntelliJ IDEA 11

The new version of IntelliJ IDEA is out, and I’m liking it. Gradle integration: creating a new project from a build.gradle was smooth and easy. Then when dependencies were added to the gradle file, the gradle plugin came in handy. One line added to build.gradle apply plugin: ‘idea’ and then one execution of gradle idea …

Read moreIntelliJ IDEA 11