Open Zedai00 opened 10 months ago
This is the error and this is my build.gradle.kts
plugins { id("java") id("application") id("org.beryx.jlink") version "3.0.1" } group = "org.zed.snakez" version = "1.0-SNAPSHOT" application { mainClass.set("org.zed.snakez.Main") } dependencies { implementation("org.jline:jline:3.25.0") implementation("org.jline:jline-terminal-jna:3.25.0") } tasks { jar { manifest.attributes["Main-Class"] = "org.zed.snakez.Main" duplicatesStrategy = DuplicatesStrategy.EXCLUDE from({ configurations.runtimeClasspath.get().filter { it.name.endsWith("jar") }.map { zipTree(it) } }) } } repositories { mavenCentral() }
Could you provide the full log output of the createMergedModule task in a code block or file? (please no screenshots of text)
createMergedModule
This is the error and this is my build.gradle.kts