You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2021/08/15 08:35:46 UTC

[maven-invoker-plugin] branch stabilize created (now e360c24)

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

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


      at e360c24  Exclude Groovy Shell from Groovy All, as it pulls in JLine with shaded org.fusesource.jansi.Ansi. For Maven before 3.5.0 it causes invalid output in the build.log files

This branch includes the following new commits:

     new e360c24  Exclude Groovy Shell from Groovy All, as it pulls in JLine with shaded org.fusesource.jansi.Ansi. For Maven before 3.5.0 it causes invalid output in the build.log files

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.


[maven-invoker-plugin] 01/01: Exclude Groovy Shell from Groovy All, as it pulls in JLine with shaded org.fusesource.jansi.Ansi. For Maven before 3.5.0 it causes invalid output in the build.log files

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

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

commit e360c2487d2946f4b5178dd63fa5a170da77fd0a
Author: rfscholte <rf...@apache.org>
AuthorDate: Sun Aug 15 10:35:34 2021 +0200

    Exclude Groovy Shell from Groovy All, as it pulls in JLine with shaded org.fusesource.jansi.Ansi.
    For Maven before 3.5.0 it causes invalid output in the build.log files
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index 095cbf8..23798c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -205,6 +205,12 @@ under the License.
       <version>${groovy-version}</version>
       <type>pom</type>
       <scope>runtime</scope>
+      <exclusions>
+        <exclusion> <!-- pulls in jline with shaded org.fusesource.jansi.Ansi, causing invalid output for M3.5.0- -->
+          <groupId>org.codehaus.groovy</groupId>
+          <artifactId>groovy-groovysh</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <dependency>