Skip to content
Advertisement

Tag: monorepo

Build war files for services when modules are modified

I have a monorepo with the following structure: My end goal here is to deploy the application’s war files to aws via GitHub actions. I am able to deploy individual services whenever there are changes in them, with the command mvn clean install -Dmaven.clean.failOnError=false -f services/foo/pom.xml. However, I am not sure how to update the services whenever a module it

Advertisement