Updated dependencies.
This commit is contained in:
parent
1b706aedc5
commit
462bfe3cc5
15 changed files with 31 additions and 15 deletions
23
build.gradle
23
build.gradle
|
@ -4,11 +4,11 @@ plugins {
|
|||
id 'jacoco'
|
||||
id 'maven-publish'
|
||||
id 'pmd'
|
||||
id 'com.jfrog.bintray' version '1.8.4'
|
||||
id 'com.jfrog.bintray' version '1.8.5'
|
||||
id 'com.github.ben-manes.versions' version '0.28.0'
|
||||
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
|
||||
id 'com.github.spotbugs' version '4.0.4'
|
||||
id 'org.sonarqube' version '2.8'
|
||||
id 'com.github.spotbugs' version '4.4.4'
|
||||
id 'org.sonarqube' version '3.0'
|
||||
}
|
||||
|
||||
import com.github.spotbugs.snom.SpotBugsTask
|
||||
|
@ -30,11 +30,9 @@ final def pkgLicenses = ['BSD 3-Clause']
|
|||
final def pkgIssueTrackerUrl = mavenUrl + '/issues'
|
||||
final def pkgLabels = ['java', 'kotlin', 'annotation', 'processor', 'semantic', 'version']
|
||||
|
||||
ext {
|
||||
versions = [
|
||||
spotbugs: '4.0.0'
|
||||
]
|
||||
}
|
||||
ext.versions = [
|
||||
spotbugs: '4.0.6'
|
||||
]
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
|
@ -177,6 +175,7 @@ spotbugs {
|
|||
toolVersion = versions.spotbugs
|
||||
excludeFilter = file("$projectDir/config/spotbugs/excludeFilter.xml")
|
||||
}
|
||||
|
||||
tasks.withType(SpotBugsTask) {
|
||||
reports {
|
||||
xml.enabled = false
|
||||
|
@ -220,6 +219,14 @@ task pandoc(type: Exec) {
|
|||
}
|
||||
}
|
||||
|
||||
jacocoTestReport {
|
||||
reports {
|
||||
html.enabled = true
|
||||
xml.enabled = true
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
sonarqube {
|
||||
properties {
|
||||
property("sonar.projectKey", "ethauvin_semver")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue