Skip to content

Instantly share code, notes, and snippets.

View NotThatRqd's full-sized avatar

rad NotThatRqd

View GitHub Profile
@domnikl
domnikl / build.gradle.kts
Last active June 25, 2025 01:01
Gradle Kotlin DSL: set main class attribute for jar
tasks.withType<Jar> {
manifest {
attributes["Main-Class"] = "com.example.MainKt"
}
}