Update 3rd party dependencies.

This commit is contained in:
Mark Nellemann 2022-10-24 15:30:56 +02:00
parent eb4df748e0
commit 8a4d6d0ca5
4 changed files with 19 additions and 14 deletions

View File

@ -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

View File

@ -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
}
}
}

View File

@ -1,3 +1,3 @@
projectId = hmci
projectGroup = biz.nellemann.hmci
projectVersion = 1.3.3
projectVersion = 1.3.4

View File

@ -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<Integer> {
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;
}