Update 3rd party dependencies.
This commit is contained in:
parent
eb4df748e0
commit
8a4d6d0ca5
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
## [1.3.3] - 2022-09-20
|
||||||
### Added
|
### Added
|
||||||
- Default configuration location on Windows platform.
|
- Default configuration location on Windows platform.
|
||||||
|
@ -23,6 +28,7 @@ All notable changes to this project will be documented in this file.
|
||||||
### Added
|
### Added
|
||||||
- Options to include/exclude Managed Systems and/or Logical Partitions.
|
- 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.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.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
|
[1.2.8]: https://bitbucket.org/mnellemann/hmci/branches/compare/v1.2.8%0Dv1.2.7
|
||||||
|
|
20
build.gradle
20
build.gradle
|
@ -22,23 +22,23 @@ version = projectVersion
|
||||||
dependencies {
|
dependencies {
|
||||||
annotationProcessor 'info.picocli:picocli-codegen:4.6.3'
|
annotationProcessor 'info.picocli:picocli-codegen:4.6.3'
|
||||||
implementation 'info.picocli:picocli: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.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 '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.influxdb:influxdb-java:2.23'
|
||||||
implementation 'org.slf4j:slf4j-api:1.7.36'
|
implementation 'org.slf4j:slf4j-api:2.0.3'
|
||||||
implementation 'org.slf4j:slf4j-simple:1.7.36'
|
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 'com.squareup.okhttp3:mockwebserver:4.10.0'
|
||||||
testImplementation 'org.slf4j:slf4j-simple:1.7.36'
|
testImplementation 'org.slf4j:slf4j-simple:2.0.3'
|
||||||
}
|
}
|
||||||
|
|
||||||
application {
|
application {
|
||||||
mainClass.set('biz.nellemann.hmci.Application')
|
mainClass.set('biz.nellemann.hmci.Application')
|
||||||
applicationDefaultJvmArgs = [ "-server", "-Xms64m", "-Xmx512m", "-XX:+UseG1GC" ]
|
applicationDefaultJvmArgs = [ "-server", "-Xms64m", "-Xmx64m", "-XX:+UseG1GC" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
|
@ -87,7 +87,7 @@ buildDeb {
|
||||||
}
|
}
|
||||||
|
|
||||||
jacoco {
|
jacoco {
|
||||||
toolVersion = "0.8.7"
|
toolVersion = "0.8.8"
|
||||||
}
|
}
|
||||||
|
|
||||||
jacocoTestReport {
|
jacocoTestReport {
|
||||||
|
@ -104,7 +104,7 @@ jacocoTestCoverageVerification {
|
||||||
violationRules {
|
violationRules {
|
||||||
rule {
|
rule {
|
||||||
limit {
|
limit {
|
||||||
minimum = 0.5 // TODO: Raise when more tests are implemented
|
minimum = 0.5
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
projectId = hmci
|
projectId = hmci
|
||||||
projectGroup = biz.nellemann.hmci
|
projectGroup = biz.nellemann.hmci
|
||||||
projectVersion = 1.3.3
|
projectVersion = 1.3.4
|
||||||
|
|
|
@ -18,7 +18,6 @@ package biz.nellemann.hmci;
|
||||||
import picocli.CommandLine;
|
import picocli.CommandLine;
|
||||||
import picocli.CommandLine.Option;
|
import picocli.CommandLine.Option;
|
||||||
import picocli.CommandLine.Command;
|
import picocli.CommandLine.Command;
|
||||||
import org.slf4j.impl.SimpleLogger;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -59,10 +58,10 @@ public class Application implements Callable<Integer> {
|
||||||
|
|
||||||
switch (enableDebug.length) {
|
switch (enableDebug.length) {
|
||||||
case 1:
|
case 1:
|
||||||
System.setProperty(SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "DEBUG");
|
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel" , "DEBUG");
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
System.setProperty(SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "TRACE");
|
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel ", "TRACE");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue