gradle.rst
changeset 2364 3ae6885e729f
parent 2363 f71d7d499489
child 2404 ba68f3bf0e48
equal deleted inserted replaced
2363:f71d7d499489 2364:3ae6885e729f
   365 
   365 
   366   configurations.runtime {
   366   configurations.runtime {
   367       exclude group: 'com.google.code.gson', module: 'gson'
   367       exclude group: 'com.google.code.gson', module: 'gson'
   368   }
   368   }
   369 
   369 
       
   370   configurations {
       
   371       implementation {
       
   372           exclude group: 'javax.jms', module: 'jms'
       
   373       }
       
   374   }
       
   375 
   370 Forcing a specific version of a transitive dependency::
   376 Forcing a specific version of a transitive dependency::
   371 
   377 
   372   configurations.all {
   378   configurations.all {
   373       resolutionStrategy.force 'com.google.code.gson:gson:2.8.1'
   379       resolutionStrategy.force 'com.google.code.gson:gson:2.8.1'
   374   }
   380   }