We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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() }
The text was updated successfully, but these errors were encountered:
Could you provide the full log output of the createMergedModule task in a code block or file? (please no screenshots of text)
createMergedModule
Sorry, something went wrong.
No branches or pull requests
This is the error and this is my build.gradle.kts
The text was updated successfully, but these errors were encountered: