[ANN] Apache Maven Doxia Sitetools 2.0.0-M1 released

2022-02-07 Thread Michael Osipov
The Apache Maven team is pleased to announce the release of the Apache Maven Doxia Sitetools, version 2.0.0-M1 Doxia Sitetools is an extension of base Doxia component that generates text markup, consisting of decoration and content that was generated by Doxia.

Re: Run all tests (also in dependent modules), fail build at end

2022-02-07 Thread Tibor Digana
I can imaging to utilize afterSessionEnd() https://maven.apache.org/ref/3.8.4/maven-core/apidocs/index.html?org/apache/maven/AbstractMavenLifecycleParticipant.html Maybe this is the way to do it in a clear way via Maven Extensions, see

Re: Run all tests (also in dependent modules), fail build at end

2022-02-07 Thread Tibor Digana
This is the implementation in maven-deploy-plugin https://github.com/apache/maven-deploy-plugin/blob/36a2030c8851e21cd1e0bec01c3cea4dc6055a48/src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java#L180 It is caching the objects of ProjectDeployerRequest and called via maven-artifact. I can