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