Skip to content

Commit

Permalink
Added findbugs configuration to main build
Browse files Browse the repository at this point in the history
  • Loading branch information
PixelBumper committed Apr 17, 2017
1 parent 79a99e6 commit 205f941
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tektosyne/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'jacoco' // needed for coverall code coverage analysis
apply plugin: 'java'
apply plugin: 'findbugs'

sourceCompatibility = source_compatibility
targetCompatibility = target_compatibility
Expand Down Expand Up @@ -102,3 +103,8 @@ dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'

}

findbugs {
sourceSets = [sourceSets.main]
excludeFilter = file("$rootProject.projectDir/config/findbugs/excludeFilter.xml")
}

0 comments on commit 205f941

Please sign in to comment.