Added toCurrency(Locale).

This commit is contained in:
Erik C. Thauvin 2021-05-25 22:59:15 -07:00
parent 2aad45a9bd
commit 07a7198455
4 changed files with 45 additions and 30 deletions

View file

@ -53,7 +53,6 @@ java {
withSourcesJar()
}
detekt {
//toolVersion = "main-SNAPSHOT"
}
@ -74,6 +73,10 @@ val javadocJar by tasks.creating(Jar::class) {
}
tasks {
named<JavaExec>("run") {
args = listOf("BTC","ETH","LTC")
}
withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = java.targetCompatibility.toString()
}