Excluding transitive dependencies.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Sun, 19 May 2019 23:26:38 +0300
changeset 2364 3ae6885e729f
parent 2363 f71d7d499489
child 2365 d907310aeacf
Excluding transitive dependencies.
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 {