Created
May 6, 2011 15:19
-
-
Save bluepapa32/959139 to your computer and use it in GitHub Desktop.
Gradle の Code Quality プラグインでエラーを無視する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'java' | |
apply plugin: 'groovy' | |
apply plugin: 'code-quality' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
groovy 'org.codehaus.groovy:groovy:1.7.10' | |
testCompile 'junit:junit:4.+' | |
} | |
// エラーがあっても無視... | |
[checkstyleMain, checkstyleTest, codenarcMain, codenarcTest]*.ignoreFailures = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
詳細は 『Gradle の Code Quality プラグインでエラーを無視する』