Skip to content

Commit

Permalink
nebula 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brharrington committed Dec 3, 2015
1 parent f1adc66 commit 6352af0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
13 changes: 5 additions & 8 deletions build.gradle
Expand Up @@ -15,7 +15,7 @@
*/

plugins {
id 'nebula.netflixoss' version '2.2.9'
id 'nebula.netflixoss' version '3.1.2'
id 'me.champeau.gradle.jmh' version '0.2.0'
}

Expand Down Expand Up @@ -83,10 +83,6 @@ subprojects {
sourceSets = [sourceSets.main]
}

tasks.withType(Checkstyle) {
exclude "**/jsr166e/**"
}

findbugs {
ignoreFailures = false
sourceSets = [sourceSets.main]
Expand All @@ -107,10 +103,11 @@ subprojects {
sourceSets = [sourceSets.main]
}

tasks.withType(Pmd) {
exclude "**/jsr166e/**"
project.tasks.withType(Javadoc) {
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}

javadoc {
options.addStringOption("sourcepath", "")
}
Expand Down
5 changes: 4 additions & 1 deletion codequality/pmd.xml
Expand Up @@ -13,6 +13,7 @@
<exclude name="AddEmptyString"/>
<exclude name="AppendCharacterWithChar"/>
<exclude name="ArrayIsStoredDirectly"/>
<exclude name="AtLeastOneConstructor"/>
<exclude name="AvoidCatchingGenericException"/>
<exclude name="AvoidDuplicateLiterals"/>
<exclude name="AvoidFieldNameMatchingMethodName"/>
Expand Down Expand Up @@ -48,6 +49,7 @@
<exclude name="LoosePackageCoupling"/>
<exclude name="MethodArgumentCouldBeFinal"/>
<exclude name="MethodReturnsInternalArray"/>
<exclude name="ModifiedCyclomaticComplexity"/>
<exclude name="NullAssignment"/>
<exclude name="OnlyOneReturn"/>
<exclude name="PrematureDeclaration"/>
Expand All @@ -56,9 +58,9 @@
<exclude name="SimpleDateFormatNeedsLocale"/>
<exclude name="SimplifyConditional"/>
<exclude name="ShortClassName"/>
<exclude name="ShortMethod"/>
<exclude name="ShortMethodName"/>
<exclude name="ShortVariable"/>
<exclude name="StdCyclomaticComplexity"/>
<exclude name="TooManyFields"/>
<exclude name="TooManyMethods"/>
<exclude name="UncommentedEmptyMethod"/>
Expand All @@ -68,5 +70,6 @@
<exclude name="UseIndexOfChar"/>
<exclude name="UselessParentheses"/>
<exclude name="UseStringBufferForStringAppends"/>
<exclude name="UseVarargs"/>
</rule>
</ruleset>
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-bin.zip

0 comments on commit 6352af0

Please sign in to comment.