You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pom.xml/build.gradle of picocli-shell-jline3 defines a compile time dependency on jline and jline-console. The second dependency of jline-console is unwanted as jline contains all the required dependency including the classes of jline-console. Ref: https://github.com/jline/jline3#artifacts. The dependency of jline-console pulls other individual jars of jline in maven classpath.
These additional dependency jars throws warning when we use proguard maven plugin to optimise the package. A snippet of the warning is "Note: duplicate definition of library class [org.jline.console.ArgDesc]".
Can we please remove the extra dependency from build.gradle.
The text was updated successfully, but these errors were encountered:
pom.xml/build.gradle of picocli-shell-jline3 defines a compile time dependency on jline and jline-console. The second dependency of jline-console is unwanted as jline contains all the required dependency including the classes of jline-console. Ref: https://github.com/jline/jline3#artifacts. The dependency of jline-console pulls other individual jars of jline in maven classpath.
These additional dependency jars throws warning when we use proguard maven plugin to optimise the package. A snippet of the warning is "Note: duplicate definition of library class [org.jline.console.ArgDesc]".
Can we please remove the extra dependency from build.gradle.
The text was updated successfully, but these errors were encountered: