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