From 8bf6f3dfbd64e77bce6a6eae987a4ce3ad6c81c7 Mon Sep 17 00:00:00 2001 From: Mark Nellemann Date: Sat, 20 Aug 2022 09:59:15 +0200 Subject: [PATCH] Update dependencies --- build.gradle | 14 +++++++------- gradle.properties | 3 +-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index dda3d57..a892c60 100644 --- a/build.gradle +++ b/build.gradle @@ -18,23 +18,23 @@ repositories { group = projectGroup version = projectVersion -sourceCompatibility = projectJavaVersion -targetCompatibility = projectJavaVersion +sourceCompatibility = 1.8 +targetCompatibility = 1.8 dependencies { annotationProcessor 'info.picocli:picocli-codegen:4.6.3' implementation 'info.picocli:picocli:4.6.3' - implementation 'org.jsoup:jsoup:1.14.3' - implementation 'com.squareup.okhttp3:okhttp:4.9.3' + implementation 'org.jsoup:jsoup:1.15.2' + implementation 'com.squareup.okhttp3:okhttp:4.10.0' implementation 'com.squareup.moshi:moshi:1.13.0' implementation 'com.serjltt.moshi:moshi-lazy-adapters:2.2' implementation 'org.tomlj:tomlj:1.0.0' - implementation 'org.influxdb:influxdb-java:2.22' + implementation 'org.influxdb:influxdb-java:2.23' implementation 'org.slf4j:slf4j-api:1.7.36' implementation 'org.slf4j:slf4j-simple:1.7.36' - testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0' - testImplementation 'com.squareup.okhttp3:mockwebserver:4.9.3' + testImplementation 'org.spockframework:spock-core:2.1-groovy-3.0' + testImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0' testImplementation 'org.slf4j:slf4j-simple:1.7.36' } diff --git a/gradle.properties b/gradle.properties index 96a53af..f5064c3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,3 @@ projectId = hmci projectGroup = biz.nellemann.hmci -projectVersion = 1.3.1 -projectJavaVersion = 1.8 +projectVersion = 1.3.2