Is there a version of the 'export' dependencies on the IntelliJ idea in gradle?
In IntelliJ IDEA, if I have a module A, depending on module B and module B, depending on module C, then the dependencies of module B will only be exported to module A if exported is set to true .
I am currently writing a script to convert my IntelliJ projects to a Gradle project. How Gradle handles transitive dependencies in buildscript when writing:
dependencies { compile project(':DependentProject') // exported = true, but how? }
Thanks in advance!
source share