You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by po...@apache.org on 2020/02/27 22:18:47 UTC

[creadur-rat] branch master updated (3a0d24f -> cb23064)

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

pottlinger pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git.


    from 3a0d24f  RAT-266: Add changelog for new Eclipse default exclusion
     new 52ed7d1  RAT-267: Apply patch from Jira - report to stderr instead of SystemOut
     new cb23064  RAT-267: Add changelog

The 2 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:
 apache-rat-core/src/main/java/org/apache/rat/Report.java | 2 +-
 src/changes/changes.xml                                  | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)


[creadur-rat] 02/02: RAT-267: Add changelog

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

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git

commit cb230644da2bdd93eee434f3a2e53f147311cc9b
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Thu Feb 27 23:18:40 2020 +0100

    RAT-267: Add changelog
---
 src/changes/changes.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 05ad2cd..48288c0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -54,7 +54,10 @@ The <action> type attribute can be add,update,fix,remove.
   </properties>
 
   <body>
-    <release version="0.14-SNAPSHOT" date="2019-xx-xx" description="Current SNAPSHOT - to be done">
+    <release version="0.14-SNAPSHOT" date="2020-xx-xx" description="Current SNAPSHOT - to be done">
+      <action issue="RAT-267" type="fix" due-to="Fabio Utzig" dev="pottlinger">
+        Report ignored lines from exclusion file to stderr instead of std to not generate erroneous JSON.
+      </action>
       <action issue="RAT-266" type="add" due-to="Michael Osipov" dev="pottlinger">
         Add .factorypath to Eclipse-default exclusions.
       </action>


[creadur-rat] 01/02: RAT-267: Apply patch from Jira - report to stderr instead of SystemOut

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

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git

commit 52ed7d13234dd7167a8af5421e0b9490e2fce7fd
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Thu Feb 27 23:16:14 2020 +0100

    RAT-267: Apply patch from Jira - report to stderr instead of SystemOut
---
 apache-rat-core/src/main/java/org/apache/rat/Report.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apache-rat-core/src/main/java/org/apache/rat/Report.java b/apache-rat-core/src/main/java/org/apache/rat/Report.java
index 66fd24d..4dff579 100644
--- a/apache-rat-core/src/main/java/org/apache/rat/Report.java
+++ b/apache-rat-core/src/main/java/org/apache/rat/Report.java
@@ -136,7 +136,7 @@ public class Report {
                 System.err.println("Will skip given exclusion '" + exclude + "' due to " + e);
             }
         }
-        System.out.println("Ignored " + ignoredLines + " lines in your exclusion files as comments or empty lines.");
+        System.err.println("Ignored " + ignoredLines + " lines in your exclusion files as comments or empty lines.");
         return new NotFileFilter(orFilter);
     }