Updated dependencies.

This commit is contained in:
Erik C. Thauvin 2020-04-16 16:10:07 -07:00
parent c9366d856f
commit e022bc90ff
10 changed files with 31 additions and 35 deletions

View file

@ -4,11 +4,11 @@ plugins {
id 'com.github.ben-manes.versions' version '0.28.0'
id 'com.github.spotbugs' version '4.0.5'
id 'idea'
id 'io.gitlab.arturbosch.detekt' version '1.7.2'
id 'io.gitlab.arturbosch.detekt' version '1.7.4'
id 'jacoco'
id 'java'
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
id 'org.jetbrains.kotlin.jvm' version '1.3.71'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'org.sonarqube' version '2.8'
id 'pmd'
}
@ -21,13 +21,11 @@ final def semverProcessor = "net.thauvin.erik:semver:1.2.0"
mainClassName = packageName + '.Mobibot'
ext {
versions = [
kotlin : '1.3.71',
log4j : '2.13.1',
spotbugs : '4.0.1'
]
}
ext.versions = [
kotlin : '1.3.72',
log4j : '2.13.1',
spotbugs: '4.0.1'
]
repositories {
mavenLocal()
@ -51,7 +49,7 @@ dependencies {
implementation 'commons-cli:commons-cli:1.4'
implementation 'commons-net:commons-net:3.6'
implementation 'com.squareup.okhttp3:okhttp:4.5.0-RC1'
implementation 'com.squareup.okhttp3:okhttp:4.5.0'
implementation 'com.rometools:rome:1.12.2'
@ -125,7 +123,7 @@ tasks.withType(io.gitlab.arturbosch.detekt.Detekt) {
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.annotationProcessorGeneratedSourcesDirectory = file("${projectDir}/src/generated/java")
options.compilerArgs += [ "-Asemver.project.dir=$projectDir" ]
options.compilerArgs += ["-Asemver.project.dir=$projectDir"]
}
compileJava {