You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2022/01/03 12:34:00 UTC

[maven-invoker-plugin] branch maven-plugin-tools updated (6b5c251 -> 507b362)

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a change to branch maven-plugin-tools
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git.


 discard 6b5c251  Bump maven-plugin-tools to 3.6.2
     add e4236a7  [MINVOKER-286] Remove unused code corresponding to goals.txt, profiles.txt
     add 91ffeb6  maven-invoker-plugin version should be override in pluginManagement
     add 25cce6d  Use String#join instead of manual joining
     add eafecd5  Add streamLogsOnFailures for maven-invoker-plugin
     add 9827386  [MINVOKER-287] Group project by ordinal in parallel mode
     add 4cd10c9  Bump doxiaVersion from 1.10 to 1.11.1
     add 9ed8f54  Bump extra-enforcer-rules from 1.4 to 1.5.1
     add 9ab65a9  Bump doxiaSitetoolsVersion from 1.10 to 1.11.1
     add 4f5d729  Bump mockito-core from 4.1.0 to 4.2.0
     add 2378703  Bump maven-site-plugin from 3.9.1 to 3.10.0
     add 8e5c2ac  Bump assertj-core from 3.20.2 to 3.22.0
     new 507b362  Bump maven-plugin-tools to 3.6.2

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6b5c251)
            \
             N -- N -- N   refs/heads/maven-plugin-tools (507b362)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                            |  19 +-
 .../maven/plugins/invoker/AbstractInvokerMojo.java | 302 ++++-----------------
 .../apache/maven/plugins/invoker/JobExecutor.java  |  93 +++++++
 src/site/apt/examples/filtering.apt.vm             |   2 -
 .../apt/examples/integration-test-verify.apt.vm    |   4 +-
 .../examples/parallel-projects-execution.apt.vm    |  75 +++++
 src/site/apt/examples/prepare-build-env.apt.vm     |   3 +
 src/site/apt/index.apt.vm                          |   2 +
 src/site/site.xml                                  |   1 +
 .../maven/plugins/invoker/InterpolationTest.java   |  18 --
 .../maven/plugins/invoker/InvokerMojoTest.java     |  14 +-
 .../maven/plugins/invoker/JobExecutorTest.java     | 157 +++++++++++
 src/test/resources/unit/goals-from-file/verify.bsh |  48 ----
 .../unit/profiles-from-file/emptyProfiles.txt      |   0
 .../resources/unit/profiles-from-file/profiles.txt |   1 -
 .../pom.xml                                        |   0
 .../unit/without-pom-project-dir/mark.txt}         |   9 -
 17 files changed, 399 insertions(+), 349 deletions(-)
 create mode 100644 src/main/java/org/apache/maven/plugins/invoker/JobExecutor.java
 create mode 100644 src/site/apt/examples/parallel-projects-execution.apt.vm
 create mode 100644 src/test/java/org/apache/maven/plugins/invoker/JobExecutorTest.java
 delete mode 100644 src/test/resources/unit/goals-from-file/verify.bsh
 delete mode 100644 src/test/resources/unit/profiles-from-file/emptyProfiles.txt
 delete mode 100644 src/test/resources/unit/profiles-from-file/profiles.txt
 rename src/test/resources/unit/{goals-from-file => with-pom-project-dir}/pom.xml (100%)
 copy src/{it/staging-reactor/src/site/site.xml => test/resources/unit/without-pom-project-dir/mark.txt} (89%)

[maven-invoker-plugin] 01/01: Bump maven-plugin-tools to 3.6.2

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch maven-plugin-tools
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git

commit 507b362f2a047f52e00e60ce496d36e1ad4ba63a
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed Dec 1 01:04:17 2021 +0100

    Bump maven-plugin-tools to 3.6.2
---
 pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 6c9260b..57b5114 100644
--- a/pom.xml
+++ b/pom.xml
@@ -76,6 +76,7 @@ under the License.
     <groovy-artifactId>groovy-all</groovy-artifactId>
     <groovy-version>3.0.9</groovy-version>
     <surefire.version>2.22.2</surefire.version>
+    <mavenPluginToolsVersion>3.6.2</mavenPluginToolsVersion>
     <project.build.outputTimestamp>2021-02-14T00:04:14Z</project.build.outputTimestamp>
   </properties>
 
@@ -101,7 +102,7 @@ under the License.
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
       <version>${mavenVersion}</version>
-      <scope>compile</scope> <!-- set to provided once MPLUGIN-372 fixed -->
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
@@ -343,6 +344,10 @@ under the License.
           <artifactId>maven-invoker-plugin</artifactId>
           <version>3.2.2</version>
         </plugin>
+        <plugin>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>3.3.1</version>
+        </plugin>
       </plugins>
     </pluginManagement>