ppalaga commented on issue #492:
URL: https://github.com/apache/maven-mvnd/issues/492#issuecomment-1274459704

   Yes, adding 
   
   ```
   <dependency>
       <groupId>org.my-group</groupId>
       <artifactId>B</artifactId>
       <version>${project.version}</version>
       <type>pom</type>
       <scope>test</scope>
       <exclusions>
           <exclusion>
               <groupId>*</groupId>
               <artifactId>*</artifactId>
           </exclusion>
       </exclusions>
   </dependency>
   ```
   
   to `C` would make `C` always start building after `B` is fully built.
   
   It is true that this not really easy to maintain for the cases where the 
execution order actually does not matter. 
   
   For the tests use case, maybe the locking would suffice on the level of 
mojos rather than the whole modules?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to