Skip to content

Commit

Permalink
Merge pull request #367 from brharrington/nebula-3.1.2
Browse files Browse the repository at this point in the history
nebula 3.1.2
  • Loading branch information
dmuino committed Dec 3, 2015
2 parents 4265abb + 9993a4d commit c7344a2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
19 changes: 11 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@
* limitations under the License.
*/

buildscript {
repositories {
jcenter()
}
}

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 +89,6 @@ subprojects {
sourceSets = [sourceSets.main]
}

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

findbugs {
ignoreFailures = false
sourceSets = [sourceSets.main]
Expand All @@ -107,10 +109,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
Original file line number Diff line number Diff line change
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>
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
version=0.8.1-SNAPSHOT
release.scope=patch
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
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 c7344a2

Please sign in to comment.