From afed3fcbe9027a20762439fee255ef5079730bcd Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 29 Oct 2017 10:17:27 -0700 Subject: [PATCH] log4J, rome, okhttp3, json, testng updates. --- build.gradle | 18 +++++++++--------- kobalt/src/Build.kt | 16 ++++++++-------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/build.gradle b/build.gradle index aa78bf4..65ddc3b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { - id "com.ewerk.gradle.plugins.annotation-processor" version "1.0.2" - id "com.github.ben-manes.versions" version "0.15.0" + id "com.ewerk.gradle.plugins.annotation-processor" version "1.0.4" + id "com.github.ben-manes.versions" version "0.17.0" } apply plugin: 'java' @@ -52,18 +52,18 @@ dependencies { compile 'pircbot:pircbot:1.5.0' compileOnly 'pircbot:pircbot:1.5.0:sources' - compile 'org.apache.logging.log4j:log4j-api:2.8.2' - compile 'org.apache.logging.log4j:log4j-core:2.8.2' + compile 'org.apache.logging.log4j:log4j-api:2.9.1' + compile 'org.apache.logging.log4j:log4j-core:2.9.1' + compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.1' compile 'commons-cli:commons-cli:1.4' compile 'commons-net:commons-net:3.6' - compile 'com.squareup.okhttp3:okhttp:3.8.1' + compile 'com.squareup.okhttp3:okhttp:3.9.0' - compile 'com.rometools:rome:1.7.4' - compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' + compile 'com.rometools:rome:1.8.0' - compile 'org.json:json:20170516' + compile 'org.json:json:20171018' compile 'org.ostermiller:utils:1.07.00' compile 'org.jsoup:jsoup:1.10.3' compile 'net.objecthunter:exp4j:0.4.8' @@ -76,7 +76,7 @@ dependencies { compileOnly semverJar - testCompile 'org.testng:testng:6.11' + testCompile 'org.testng:testng:6.12' testCompile 'org.assertj:assertj-core:3.8.0' } diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt index a5cdf4b..aa5b10c 100644 --- a/kobalt/src/Build.kt +++ b/kobalt/src/Build.kt @@ -57,16 +57,16 @@ val p = project { compile("pircbot:pircbot:1.5.0") //compileOnly("pircbot:pircbot::sources:1.5.0") - compile("org.apache.logging.log4j:log4j-api:2.8.2", - "org.apache.logging.log4j:log4j-core:2.8.2", - "org.apache.logging.log4j:log4j-slf4j-impl:jar:2.8.2") + compile("org.apache.logging.log4j:log4j-api:2.9.1", + "org.apache.logging.log4j:log4j-core:2.9.1", + "org.apache.logging.log4j:log4j-slf4j-impl:jar:2.9.1") compile("commons-cli:commons-cli:1.4", "commons-net:commons-net:3.6") - compile("com.squareup.okhttp3:okhttp:3.8.1") + compile("com.squareup.okhttp3:okhttp:3.9.0") - compile("com.rometools:rome:1.7.4") + compile("com.rometools:rome:1.8.0") - compile("org.json:json:20170516") + compile("org.json:json:20171018") compile("org.ostermiller:utils:1.07.00") compile("org.jsoup:jsoup:1.10.3") compile("net.objecthunter:exp4j:0.4.8") @@ -82,8 +82,8 @@ val p = project { } dependenciesTest { - compile("org.testng:testng:6.11") - compile("org.assertj:assertj-core:3.8.0") + compile("org.testng:testng:6.12") + compile("org.assertj:assertj-core:3.9.0") } apt {