0

I have a java project, composed of 2 sub project (A , B) A has its own gradle file with some dependencies B has its own gradle file with dependecy on project A using (implementation project(':A')

Would this mean that libraries that are part of project 'A' gradle file, need not in project 'B' gradle file ?

Or would I still have to defines them in project B

Theoretical question

crawler_in
  • 31
  • 4
  • 1
    See the distinction in this question: https://stackoverflow.com/questions/44413952/gradle-implementation-vs-api-configuration Assuming A is a "library", things declared as `implementation` are transitive, whereas things declared as `api` are both transitive and usable directly in `B`. – User51 Feb 10 '23 at 19:15

0 Answers0