Hello I am new to gradle and it is a little bit confusing for me. How should I add a dependency in my gradle configuration to have access to B1.java in projectA1? Project B is gradle project and project A is just a folder with another gradle projects.
Here is my structure:
- Workspace:
- ProjectA
- projectA1
- ...
- here I want to have access to B1.java
- build.gradle
- projectA2
- ...
- build.gradle
- projectA1
- ProjectB
- projectB1
- B1.java
- ...
- build.gradle
- projectB2
- ...
- build.gradle
- build.gradle
- projectB1
- ProjectA
I tried to read gradle documentation, but it is not clear for me. Any help appreciated. Thanks!