mirror of
https://github.com/GayPizzaSpecifications/stable-diffusion-rpc.git
synced 2025-08-03 21:41:31 +00:00
27 lines
476 B
Plaintext
27 lines
476 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(rootProject)
|
|
}
|
|
|
|
java {
|
|
val javaVersion = JavaVersion.toVersion(17)
|
|
sourceCompatibility = javaVersion
|
|
targetCompatibility = javaVersion
|
|
}
|
|
|
|
application {
|
|
mainClass.set("gay.pizza.stable.diffusion.sample.MainKt")
|
|
} |