mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-18 20:15:14 +02:00
9 lines
176 B
Kotlin
9 lines
176 B
Kotlin
// Kotlin build script — `.kts` extension. JVM family; spec layer treats as Java.
|
|
plugins {
|
|
java
|
|
application
|
|
}
|
|
|
|
application {
|
|
mainClass.set("com.example.Main")
|
|
}
|