I am using maven-deploy-plugin in a multi-module project with property deployAtEndset to true.
After execution mvn deployin the root project, the plugin is deployed for each subproject - I see something like:
[INFO] --- maven-deploy-plugin:2.8.2:deploy (default-deploy) @ subproject-name ---
[INFO] Deploying package:subproject-name:v1.1 at end
The last call is for the root project:
[INFO] --- maven-deploy-plugin:2.8.2:deploy (default-deploy) @ parent-project ---
[INFO] Deploying package:parent-project:v1.1 at end
and that’s all, the actual deployment is not performed.
How to make deployment plugin correct in multi-module project with deployAtEnd=true?
source
share