I have a multi-module maven java project. In the parent pom:
<modules>
<module>core</module>
<module>batch-worker</module>
<module>be</module>
<module>scheduler</module>
<module>migrations</module>
</modules>
Both the migrations
and core
modules aren't services I wish to deploy but just common packages used throughout all services.
When i attempt a deploy with mvn appengine:deploy
, I receive goal execution failures because the core
and migrations
modules do not define an app.yaml
as they are not deployable services.
How do I skip these and omit them from the deploy?