I have 2 maven modules A and B. Both have java classes in src/main/java and resources in src/main/resources. A depends on B so B is referenced in the A's pom.
It works but actually A depends on B only because A needs some resources from B.
Is there any solution for pulling only resources of B without pulling all the B project ?
Thank you in advance for your help