[ https://issues.apache.org/jira/browse/MDEPLOY-234?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17965818#comment-17965818 ]
Olivier Lamy commented on MDEPLOY-234: -------------------------------------- This project has moved from Jira to GitHub Issues. This issue was migrated to [apache/maven-deploy-plugin#379|https://github.com/apache/maven-deploy-plugin/issues/379]. > Nothing is deployed if deployAtEnd=true and extension is added in submodule > ---------------------------------------------------------------------------- > > Key: MDEPLOY-234 > URL: https://issues.apache.org/jira/browse/MDEPLOY-234 > Project: Maven Deploy Plugin (Moved to GitHub Issues) > Issue Type: Bug > Components: deploy:deploy > Affects Versions: 2.8.2 > Environment: Maven 3.5.3 > Reporter: Piotr Paczynski > Assignee: Robert Scholte > Priority: Major > Attachments: project.zip, result.txt > > > It seems that when *deploytEnd=true* and one of the submodules in the reactor > adds an *extension*, then nothing gets deployed. The last module to build > says "Deploying ... at end". > > I'm attaching a minimal project that is affected by the issue. To reproduce, > unpack it and issue the following command in the main dir (I've used Maven > 3.5.3). > {noformat} > mvn deploy -DaltDeploymentRepository=test::default::file:target/repo > {noformat} > Outcome: Nothing is deployed. The *target/repo* is not created. See output > attached. > Expected result: Deployment of both modules is performed during submodule's > deploy phase. > > I've debugged it and think I understand the problem: > 1. When the parent module is built, the DeployMojo class is loaded and the > {noformat} > private static final AtomicInteger readyProjectsCounter > {noformat} > field is initialized to 0. > 2. Then it's bumped to 1 when deploy of "parent" is executed. > 3. Then, the second module is built (submodule) and, because it contributes > an extension, DepoyMojo class is re-loaded (by Guice?) and the > {noformat} > private static final AtomicInteger readyProjectsCounter{noformat} > field is reinitialized to 0. > 4. Then it's bumped to 1 when deploy of "submodule" is executed, but since *1 > < 2* the deploy is not performed at all. > > Not sure how to fix it, anyone? -- This message was sent by Atlassian Jira (v8.20.10#820010)