Skip to content

Commit

Permalink
Add flake
Browse files Browse the repository at this point in the history
  • Loading branch information
KacperTopolski committed Feb 9, 2025
1 parent f5c1c1b commit baded6d
Show file tree
Hide file tree
Showing 4 changed files with 881 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ plugins {
application
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
kotlin("plugin.serialization") version "2.0.20"
id("com.github.johnrengelman.shadow") version "7.1.2"
}

group = "tcs"
Expand Down Expand Up @@ -54,3 +55,9 @@ tasks.test {
application {
mainClass.set("MainKt")
}

tasks.shadowJar {
manifest {
attributes["Main-Class"] = "com.example.MainClass" // Set your main class here
}
}
Loading

0 comments on commit baded6d

Please sign in to comment.