How To Exclude Transitive Jar Dependency In Gradle?
My project depends on dependency A and dependency B. Dependency A also depends on dependency B, but a different version of it. The problem is in project A's build.gradle dependency
Solution 1:
You can't do it for the jar files.
You can exclude transitive dependencies (described in the pom file). The jar file is not a transitive dependency.
Post a Comment for "How To Exclude Transitive Jar Dependency In Gradle?"