I'm trying to get this plugin working under a multimodule project, example structure:
services (root)
-- service1 (child)
-- service2 (child)
-- service3 (child)
What I want to be able to do is to either go into one of the services and deploy it to lambda, or stand in the root and deploy all of them, using mvn package shade:shade lambda:deploy-lambda.
I'm trying to set it up using pluginManagement but I'm miserably failing, whatever I do it tries to deploy my root module to AWS Lambda, while other plugins I use ignores the root project when the plugin is under <pluginManagement/> tag.
I'm trying to get this plugin working under a multimodule project, example structure:
services (root)
-- service1 (child)
-- service2 (child)
-- service3 (child)
What I want to be able to do is to either go into one of the services and deploy it to lambda, or stand in the root and deploy all of them, using
mvn package shade:shade lambda:deploy-lambda.I'm trying to set it up using pluginManagement but I'm miserably failing, whatever I do it tries to deploy my root module to AWS Lambda, while other plugins I use ignores the root project when the plugin is under
<pluginManagement/>tag.