I have 2 Github repositories:
PandaService
PandaServiceDataAccessLayer
PandaService
is depended on PandaServiceDataAccessLayer
. I can build a fat jar locally with Gradle composite build as mentioned here: How to build a fat jar with multi-project and Gradle?
Now I want to make AWS Codepipeline track both github repositories, so that once I push new change to either repository, AWS Codepipeline will build a new fatJar for the service.
Is it possible to do it? If not, any suggestions on how to get multi-projects fat jar integrated with AWS Codepipeline?