Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Commit a2e80f8

Browse files
committed
Fixed wrong class name in fatjar
1 parent 99ffdc0 commit a2e80f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
tasks.create("fatJar", Jar::class.java) {
2424
manifest {
2525
attributes["Implementation-Title"] = "KME Bundle Fat Jar"
26-
attributes["Main-Class"] = "com.jacobtread.kme.AppKt"
26+
attributes["Main-Class"] = "com.jacobtread.kme.App"
2727
}
2828
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
2929
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })

0 commit comments

Comments
 (0)