Removed unused dependencies
This commit is contained in:
parent
209905b101
commit
3b4a50d78f
|
@ -12,12 +12,16 @@ kotlin {
|
||||||
macosArm64()
|
macosArm64()
|
||||||
|
|
||||||
|
|
||||||
|
val kotlinxSerializationVersion: String by project
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
|
||||||
val nativeMain by getting {
|
val nativeMain by getting {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":fints4k"))
|
implementation(project(":fints4k"))
|
||||||
|
|
||||||
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinxSerializationVersion")
|
||||||
|
|
||||||
implementation("com.github.ajalt.clikt:clikt:3.5.4")
|
implementation("com.github.ajalt.clikt:clikt:3.5.4")
|
||||||
|
|
||||||
// only needed for writing files to output
|
// only needed for writing files to output
|
||||||
|
|
|
@ -3,22 +3,13 @@ ext {
|
||||||
appVersionName = '1.0.0-Alpha-11-SNAPSHOT'
|
appVersionName = '1.0.0-Alpha-11-SNAPSHOT'
|
||||||
|
|
||||||
|
|
||||||
/* MPP / basic dependencies */
|
|
||||||
|
|
||||||
|
|
||||||
javaUtilsVersion = '1.0.18'
|
|
||||||
|
|
||||||
|
|
||||||
/* Test */
|
/* Test */
|
||||||
|
|
||||||
junit5Version = '5.5.2'
|
|
||||||
|
|
||||||
assertJVersion = '3.12.2'
|
assertJVersion = '3.12.2'
|
||||||
|
|
||||||
mockitoVersion = '2.22.0'
|
mockitoVersion = '2.22.0'
|
||||||
mockitoKotlinVersion = '1.6.0'
|
mockitoKotlinVersion = '1.6.0'
|
||||||
|
|
||||||
slf4jVersion = '1.7.26'
|
|
||||||
logbackVersion = '1.2.3'
|
logbackVersion = '1.2.3'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue