Updated dependencies, wrapper, etc.

This commit is contained in:
Erik C. Thauvin 2020-06-19 14:20:33 -07:00
parent b729eb2729
commit dcd6996c39
7 changed files with 25 additions and 15 deletions

View file

@ -2,9 +2,9 @@ plugins {
id 'application'
id 'checkstyle'
id 'com.github.ben-manes.versions' version '0.28.0'
id 'com.github.spotbugs' version '4.3.0'
id 'com.github.spotbugs' version '4.4.1'
id 'idea'
id 'io.gitlab.arturbosch.detekt' version '1.9.1'
id 'io.gitlab.arturbosch.detekt' version '1.10.0-RC1'
id 'jacoco'
id 'java'
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
@ -63,15 +63,18 @@ dependencies {
implementation platform('org.jetbrains.kotlin:kotlin-bom')
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7")
testImplementation 'org.testng:testng:7.2.0'
testImplementation 'org.assertj:assertj-core:3.16.1'
testImplementation 'org.mockito:mockito-core:3.3.3'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.10.1'
spotbugsPlugins 'com.mebigfatguy.sb-contrib:sb-contrib:7.4.7'
compileOnly "com.github.spotbugs:spotbugs-annotations:$versions.spotbugs"
testCompileOnly "com.github.spotbugs:spotbugs-annotations:$versions.spotbugs"
}
test {
@ -81,13 +84,13 @@ test {
}
java {
sourceCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
compileKotlin {
kotlinOptions {
jvmTarget = '9'
jvmTarget = '11'
}
}