Updated dependencies.

This commit is contained in:
Erik C. Thauvin 2020-06-13 02:04:04 -07:00
parent ea21cd5383
commit d843c65f6f
9 changed files with 42 additions and 38 deletions

View file

@ -2,14 +2,14 @@ plugins {
id 'application'
id 'checkstyle'
id 'com.github.ben-manes.versions' version '0.28.0'
id 'com.github.spotbugs' version '4.2.0'
id 'com.github.spotbugs' version '4.3.0'
id 'idea'
id 'io.gitlab.arturbosch.detekt' version '1.9.1'
id 'jacoco'
id 'java'
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'org.sonarqube' version '2.8'
id 'org.sonarqube' version '3.0'
id 'pmd'
}
@ -23,7 +23,7 @@ mainClassName = packageName + '.Mobibot'
ext.versions = [
log4j : '2.13.3',
spotbugs: '4.0.3'
spotbugs: '4.0.4'
]
repositories {
@ -48,11 +48,11 @@ dependencies {
implementation 'commons-cli:commons-cli:1.4'
implementation 'commons-net:commons-net:3.6'
implementation 'com.squareup.okhttp3:okhttp:4.7.1'
implementation 'com.squareup.okhttp3:okhttp:4.7.2'
implementation 'com.rometools:rome:1.12.2'
implementation 'com.rometools:rome:1.13.1'
implementation 'org.json:json:20190722'
implementation 'org.json:json:20200518'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'net.objecthunter:exp4j:0.4.8'
@ -104,7 +104,7 @@ tasks.withType(com.github.spotbugs.snom.SpotBugsTask) {
}
pmd {
toolVersion = '6.23.0'
toolVersion = '6.24.0'
ignoreFailures = true
ruleSets = []
ruleSetFiles = files("${projectDir}/config/pmd.xml")