Maven Deployment Plugin - deployAtEnd not working

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?

+4
source share
2 answers

Today I solved the same problem in my project.

extansions ( <extension>). maven-deploy-plugin.

, <extension> POM.

+2

, maven-deploy-plugin:

https://issues.apache.org/jira/plugins/servlet/mobile#issue/MDEPLOY-193

Jérôme Joslet Explantation :

.

maven-deploy-plugin . (deployRequests), (readyProjectsCounter). , , . , , . . .

, .

: https://svn.apache.org/repos/infra/websites/production/maven/content/reference/maven-classloading.html:

, , - . API Maven, . Maven + + .

Maven , , .

- <dependencies>, . , classloader .

+2

All Articles