This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
jdbc-resource-manager.kt/sandbox/build.gradle.kts

21 lines
330 B
Plaintext

import ru.landgrafhomyak.kotlin.kmp_gradle_build_helper.plugin.xomrk
repositories {
mavenCentral()
maven("https://maven.landgrafhomyak.ru/")
}
xomrk {
kotlin {
jvm {}
sourceSets {
jvmMain {
dependencies {
implementation(project(":"))
implementation("org.xerial:sqlite-jdbc:3.49.1.0")
}
}
}
}
}