18 lines
278 B
Kotlin
18 lines
278 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.2.21"
|
|
application
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.kargs:kargs:1.0.8")
|
|
implementation("com.varabyte.kotter:kotter-jvm:1.2.1")
|
|
}
|
|
|
|
application {
|
|
mainClass.set("io.pledge.PledgeKt")
|
|
}
|