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 February 2, 2025 14:53
Gradle Kotlin DSL: set main class attribute for jar
tasks.withType<Jar> {
manifest {
attributes["Main-Class"] = "com.example.MainKt"
}
}