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
Currently we have an issue with the version convergence of the asciidoctorj dependency and the transitive asciidoctorj dependency of the asciidoctorj-pdf plugin.
We should explicitly include the need dependencies in our pom and not rely on any transitive dependency. Especially we should directly include asciidoctorj. But we should not include any SNAPSHOT version of a 3rd party library.
We need a maven build mechanism, which fails the build if there are any conflicting transitive dependencies. This can be accomplished for example with the maven-enforcer-plugin (see also this). Here is an example:
Currently we have an issue with the version convergence of the asciidoctorj dependency and the transitive asciidoctorj dependency of the asciidoctorj-pdf plugin.
We should explicitly include the need dependencies in our pom and not rely on any transitive dependency. Especially we should directly include
asciidoctorj
. But we should not include any SNAPSHOT version of a 3rd party library.We need a maven build mechanism, which fails the build if there are any conflicting transitive dependencies. This can be accomplished for example with the maven-enforcer-plugin (see also this). Here is an example:
Is there a better way to do it than with the maven-enforcer-plugin?
Note: We shouldn't shade any dependencies.
The text was updated successfully, but these errors were encountered: