mirror of
https://github.com/GayPizzaSpecifications/stable-diffusion-rpc.git
synced 2025-08-03 05:30:54 +00:00
24 lines
422 B
Plaintext
24 lines
422 B
Plaintext
plugins {
|
|
application
|
|
|
|
kotlin("jvm")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlin:kotlin-bom")
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
|
|
|
|
implementation(rootProject)
|
|
}
|
|
|
|
application {
|
|
mainClass.set("gay.pizza.stable.diffusion.sample.MainKt")
|
|
}
|