I have
project SB (spring boot using gradle) depends upon
project A (java with maven) that depends upon
project B (java with maven)
In my SB project, I build one large jar for embedded tomcat deployment. I am not sure if this means projects A & B are modules that get built into my singular jar or if I have to manually build their jar files and place into the SB/libs directory for use. Since I antcipate many changes, I would prefer one singular jar.
Can anyone offer advice on how to structure this project (ideally in IntelliJ) so I can use all three sources?