2024-08-22 14:46:42 +00:00
|
|
|
plugins {
|
2024-08-26 01:13:50 +00:00
|
|
|
kotlin("jvm") // or kotlin("multiplatform"), depending on your requirements
|
2024-08-22 14:46:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
setUrl("https://maven.dankito.net/api/packages/codinux/maven")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2024-09-03 18:39:01 +00:00
|
|
|
implementation(project(":fints4k-banking-client"))
|
2024-08-22 14:46:42 +00:00
|
|
|
}
|