adalbert
03/07/2019, 11:09 PMdep.transitive
. The interface Dependency
does not include anything with transitive
. I am not sure how to port this groovy fragment to kotlin dsljbnizet
03/08/2019, 9:42 AMtransitive
property. So I guess you should check if the dependency is an instance of ModuleDependency and if it is transitive: if (!(dep is ModuleDependency && dep.isTransitive))
Shan
03/08/2019, 11:30 AMShan
03/08/2019, 11:32 AM./gradlew :subproject1:publish
./gradlew :subproject2:publish
//etc
adalbert
03/09/2019, 5:53 PM