Added date format to currency converter response.

This commit is contained in:
Erik C. Thauvin 2023-10-04 08:55:48 -07:00
parent 8b63846270
commit bc8bf6bf57
4 changed files with 20 additions and 14 deletions

View file

@ -13,7 +13,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.9.10'
id 'org.jetbrains.kotlin.kapt' version '1.9.10'
id 'org.jetbrains.kotlinx.kover' version '0.7.3'
id 'org.sonarqube' version '4.3.1.3277'
id 'org.sonarqube' version '4.4.1.3373'
id 'pmd'
}
@ -21,7 +21,7 @@ defaultTasks 'deploy'
final def packageName = 'net.thauvin.erik.mobibot'
final def deployDir = 'deploy'
final def semverProcessor = "net.thauvin.erik:semver:1.2.0"
final def semverProcessor = "net.thauvin.erik:semver:1.2.1"
final def isCI = (System.getenv('CI') != null)
@ -77,15 +77,16 @@ dependencies {
implementation 'com.rometools:rome:2.1.0'
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
implementation 'com.squareup.okio:okio:3.6.0'
implementation 'net.aksingh:owm-japis:2.5.3.0'
implementation 'net.objecthunter:exp4j:0.4.8'
implementation 'org.json:json:20230618'
implementation 'org.jsoup:jsoup:1.16.1'
// Thauvin
implementation 'net.thauvin.erik:cryptoprice:1.0.0'
implementation 'net.thauvin.erik:jokeapi:0.9-SNAPSHOT'
implementation 'net.thauvin.erik:pinboard-poster:1.0.3'
implementation 'net.thauvin.erik:cryptoprice:1.0.1'
implementation 'net.thauvin.erik:jokeapi:0.9.0'
implementation 'net.thauvin.erik:pinboard-poster:1.1.0'
implementation 'net.thauvin.erik.urlencoder:urlencoder-lib:1.4.0'
testImplementation 'com.willowtreeapps.assertk:assertk-jvm:0.27.0'
@ -211,7 +212,7 @@ sonarqube {
property('sonar.organization', 'ethauvin-github')
property('sonar.projectKey', 'ethauvin_mobibot')
property('sonar.host.url', 'https://sonarcloud.io')
property('sonar.coverage.jacoco.xmlReportPaths', "${project.buildDir}/reports/kover/report.xml")
property('sonar.coverage.jacoco.xmlReportPaths', "${layout.buildDirectory.get()}/reports/kover/report.xml")
}
}