36 lines
610 B
Plaintext
36 lines
610 B
Plaintext
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.landgrafhomyak.ru/")
|
|
}
|
|
|
|
dependencies {
|
|
classpath("ru.landgrafhomyak.kotlin:kotlin-mpp-gradle-build-helper:v0.2k2.0.20")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
kotlin("multiplatform") version "2.0.20"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
jvm()
|
|
|
|
|
|
sourceSets {
|
|
jvmMain {
|
|
dependencies {
|
|
implementation(project(":storage-api"))
|
|
implementation(project(":telegram-api"))
|
|
implementation(project(":impl"))
|
|
implementation(project(":telegram-api-impl"))
|
|
implementation(project(":storage-jdbc-sqlite"))
|
|
}
|
|
}
|
|
}
|
|
} |