diff --git a/CHANGELOG.md b/CHANGELOG.md index aa1c94a..e06dcd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [1.3.4] - 2022-10-24 +### Changed +- Updated 3rd party dependencies + + ## [1.3.3] - 2022-09-20 ### Added - Default configuration location on Windows platform. @@ -23,6 +28,7 @@ All notable changes to this project will be documented in this file. ### Added - Options to include/exclude Managed Systems and/or Logical Partitions. +[1.3.4]: https://bitbucket.org/mnellemann/hmci/branches/compare/v1.3.4%0Dv1.3.3 [1.3.3]: https://bitbucket.org/mnellemann/hmci/branches/compare/v1.3.3%0Dv1.3.0 [1.3.0]: https://bitbucket.org/mnellemann/hmci/branches/compare/v1.3.0%0Dv1.2.8 [1.2.8]: https://bitbucket.org/mnellemann/hmci/branches/compare/v1.2.8%0Dv1.2.7 diff --git a/build.gradle b/build.gradle index bb315fe..707b0f1 100644 --- a/build.gradle +++ b/build.gradle @@ -22,23 +22,23 @@ version = projectVersion dependencies { annotationProcessor 'info.picocli:picocli-codegen:4.6.3' implementation 'info.picocli:picocli:4.6.3' - implementation 'org.jsoup:jsoup:1.15.2' + implementation 'org.jsoup:jsoup:1.15.3' implementation 'com.squareup.okhttp3:okhttp:4.10.0' - implementation 'com.squareup.moshi:moshi:1.13.0' + implementation 'com.squareup.moshi:moshi:1.14.0' implementation 'com.serjltt.moshi:moshi-lazy-adapters:2.2' - implementation 'org.tomlj:tomlj:1.0.0' + implementation 'org.tomlj:tomlj:1.1.0' implementation 'org.influxdb:influxdb-java:2.23' - implementation 'org.slf4j:slf4j-api:1.7.36' - implementation 'org.slf4j:slf4j-simple:1.7.36' + implementation 'org.slf4j:slf4j-api:2.0.3' + implementation 'org.slf4j:slf4j-simple:2.0.3' - testImplementation 'org.spockframework:spock-core:2.1-groovy-3.0' + testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0' testImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0' - testImplementation 'org.slf4j:slf4j-simple:1.7.36' + testImplementation 'org.slf4j:slf4j-simple:2.0.3' } application { mainClass.set('biz.nellemann.hmci.Application') - applicationDefaultJvmArgs = [ "-server", "-Xms64m", "-Xmx512m", "-XX:+UseG1GC" ] + applicationDefaultJvmArgs = [ "-server", "-Xms64m", "-Xmx64m", "-XX:+UseG1GC" ] } java { @@ -87,7 +87,7 @@ buildDeb { } jacoco { - toolVersion = "0.8.7" + toolVersion = "0.8.8" } jacocoTestReport { @@ -104,7 +104,7 @@ jacocoTestCoverageVerification { violationRules { rule { limit { - minimum = 0.5 // TODO: Raise when more tests are implemented + minimum = 0.5 } } } diff --git a/gradle.properties b/gradle.properties index c8c8b59..3afee7e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ projectId = hmci projectGroup = biz.nellemann.hmci -projectVersion = 1.3.3 +projectVersion = 1.3.4 diff --git a/src/main/java/biz/nellemann/hmci/Application.java b/src/main/java/biz/nellemann/hmci/Application.java index d1d2800..b52da8b 100644 --- a/src/main/java/biz/nellemann/hmci/Application.java +++ b/src/main/java/biz/nellemann/hmci/Application.java @@ -18,7 +18,6 @@ package biz.nellemann.hmci; import picocli.CommandLine; import picocli.CommandLine.Option; import picocli.CommandLine.Command; -import org.slf4j.impl.SimpleLogger; import java.io.File; import java.io.IOException; @@ -59,10 +58,10 @@ public class Application implements Callable { switch (enableDebug.length) { case 1: - System.setProperty(SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "DEBUG"); + System.setProperty("org.slf4j.simpleLogger.defaultLogLevel" , "DEBUG"); break; case 2: - System.setProperty(SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "TRACE"); + System.setProperty("org.slf4j.simpleLogger.defaultLogLevel ", "TRACE"); break; }