Switched to detekt snapshot for now.

This commit is contained in:
Erik C. Thauvin 2021-04-29 19:07:41 -07:00
parent 2c78d713eb
commit 8a945b2dc6
3 changed files with 7 additions and 6 deletions

View file

@ -2,7 +2,7 @@ plugins {
id 'application'
id 'checkstyle'
id 'com.github.ben-manes.versions' version '0.38.0'
id 'com.github.spotbugs' version '4.7.0'
id 'com.github.spotbugs' version '4.7.1'
id 'idea'
id 'io.gitlab.arturbosch.detekt' version '1.16.0'
id 'jacoco'
@ -10,7 +10,7 @@ plugins {
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
id 'org.jetbrains.kotlin.jvm' version '1.5.0'
id 'org.jetbrains.kotlin.kapt' version '1.5.0'
id 'org.sonarqube' version '3.1.1'
id 'org.sonarqube' version '3.2.0'
id 'pmd'
}
@ -29,7 +29,6 @@ ext.versions = [
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
@ -127,6 +126,7 @@ pmd {
}
detekt {
toolVersion = "main-SNAPSHOT"
ignoreFailures = true // Baseline is incomplete and fails on various CIs, not sure why.
baseline = file("${projectDir}/config/detekt/baseline.xml")
}