# HG changeset patch # User Oleksandr Gavenko # Date 1558297598 -10800 # Node ID 3ae6885e729f680f86b805662ceef356a5be390c # Parent f71d7d499489d4df96de313641e70be9ef18acd9 Excluding transitive dependencies. diff -r f71d7d499489 -r 3ae6885e729f gradle.rst --- a/gradle.rst Sun May 19 23:25:08 2019 +0300 +++ b/gradle.rst Sun May 19 23:26:38 2019 +0300 @@ -367,6 +367,12 @@ exclude group: 'com.google.code.gson', module: 'gson' } + configurations { + implementation { + exclude group: 'javax.jms', module: 'jms' + } + } + Forcing a specific version of a transitive dependency:: configurations.all {