Skip to content

Commit

Permalink
#236 Tune build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoraka committed Oct 8, 2017
1 parent d9c1d0e commit 8848a40
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,6 @@ allprojects {
testCompile("nl.jqno.equalsverifier:equalsverifier:${equalsVerifierVersion}")
}

// springBoot {
// mainClass = 'dvoraka.avservice.rest.Application'
// }

jar {
baseName = "avservice-${project.name}"
}
Expand Down Expand Up @@ -217,7 +213,7 @@ allprojects {
}

//
// Quality tools configuration
// Quality tool configurations
//
checkstyle {
toolVersion = '7.3'
Expand All @@ -229,7 +225,6 @@ allprojects {
}

findbugs {
toolVersion = '3.0.1'
reportsDir = file("${project.rootDir}/reports/findbugsReports/${project.name}")
reportLevel = 'medium'
sourceSets = [sourceSets.main]
Expand All @@ -253,15 +248,13 @@ allprojects {
}

pmd {
toolVersion = '5.5.2'
reportsDir = file("${project.rootDir}/reports/pmd/${project.name}")
sourceSets = [sourceSets.main]

ignoreFailures = false
}

jacoco {
toolVersion = '0.7.8'
reportsDir = file("${project.rootDir}/reports/jacoco/${project.name}")
}

Expand Down

0 comments on commit 8848a40

Please sign in to comment.