BankingClient/build.gradle.kts

20 lines
345 B
Plaintext
Raw Normal View History

buildscript {
repositories {
mavenCentral()
}
2024-08-14 17:41:11 +00:00
val kotlinVersion: String by extra
2024-08-14 17:41:11 +00:00
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
2024-08-14 17:41:11 +00:00
}
allprojects {
group = "net.codinux.banking.client"
version = "1.0.0-SNAPSHOT"
2024-08-14 17:41:11 +00:00
repositories {
mavenCentral()
}
2024-08-14 17:41:11 +00:00
}