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

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


    from 3d1ba41d Fix unused imports while trying to import into Eclipse
     add 0188ed33 fixed RAT-265 and initial tests for command line processing
     add 70750c09 Added DeprecationReporter and logged deprecated uses
     add 8c24374e cleaned up checkstyle and logging issues
     add 527c4488 Attempt to fix windows file close issue
     add cab2a6d5 attempt to fix Windows errors
     add db3de376 attempt to fix windows error
     add 4a35dfc2 fixed issues uncovered in the last change
     add 8f8b8f5a rebased on main branch
     add 34e1f124 attempt to fix windows error
     add a80e0908 work around for 
https://github.com/junit-team/junit5/issues/2811
     add 7343620d fixed some spotbugs
     add c92cb156 modified parseExclusions to remove false warning
     add 823509bd Merge branch 'master' into 
RAT-324_tests_to_validate_that_UI_options
     add 7783313c fixed bad merge
     add f257dce7 changed deprecated version strings to 0.17 and removed extra 
space in message
     add b8619668 fixed test error
     add 474e9121 added tests for RAT-190 and fixed TestingLog
     add 4e4655db added tests for RAT-265 and fixed TestingLog
     add ba826a85 RAT-324: Fix typo
     add 900c7d9b RAT-324: Fix older version references
     new 995efa36 Merge pull request #252 from 
Claudenw/RAT-324_tests_to_validate_that_UI_options

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:
 .../java/org/apache/rat/DeprecationReporter.java   | 122 ++++++++
 .../src/main/java/org/apache/rat/Report.java       | 235 +++++++++------
 .../rat/analysis/DefaultAnalyserFactory.java       |   3 -
 .../src/main/java/org/apache/rat/api/Document.java |  14 +-
 .../src/main/java/org/apache/rat/api/MetaData.java |   1 -
 .../rat/configuration/MatcherBuilderTracker.java   |  19 +-
 .../rat/configuration/XMLConfigurationReader.java  |  47 ++-
 .../rat/document/CompositeDocumentException.java   |  39 ---
 .../org/apache/rat/header/ArrayCharFilter.java     |   5 +
 .../java/org/apache/rat/header/CharFilter.java     |   4 +
 .../rat/header/FilteringSequenceFactory.java       |   4 +
 .../java/org/apache/rat/header/HeaderBean.java     |   4 +
 .../java/org/apache/rat/header/HeaderMatcher.java  |   4 +
 .../org/apache/rat/header/LineNumberReader.java    |   4 +
 .../main/java/org/apache/rat/license/ILicense.java |   2 -
 .../rat/license/LicenseFamilySetFactory.java       |  27 +-
 .../org/apache/rat/license/LicenseSetFactory.java  |   1 -
 .../java/org/apache/rat/license/SimpleLicense.java |  13 +-
 .../apache/rat/license/SimpleLicenseFamily.java    |   7 +-
 .../main/java/org/apache/rat/report/RatReport.java |   2 +-
 .../claim/impl/xml/SimpleXmlClaimReporter.java     |   2 -
 .../main/java/org/apache/rat/utils/DefaultLog.java |  21 +-
 .../java/org/apache/rat/utils/ReportingSet.java    |   4 +-
 .../java/org/apache/rat/walker/ArchiveWalker.java  |  14 +-
 .../org/apache/rat/walker/DirectoryWalker.java     |  13 +-
 .../main/java/org/apache/rat/walker/Walker.java    |   2 +-
 .../main/resources/org/apache/rat/rat-config.xsd   |   4 +-
 .../src/test/java/org/apache/rat/DefaultsTest.java |   2 +-
 .../org/apache/rat/ReportConfigurationTest.java    |  63 ++--
 .../src/test/java/org/apache/rat/ReportTest.java   | 323 ++++++++++++++++++++-
 .../src/test/java/org/apache/rat/ReporterTest.java |  18 +-
 .../rat/analysis/DefaultAnalyserFactoryTest.java   |  26 +-
 .../org/apache/rat/analysis/TikaProcessorTest.java |  16 +-
 .../rat/analysis/license/AbstractLicenseTest.java  |   2 +-
 .../apache/rat/annotation/TestLicenseAppender.java |  10 +-
 .../configuration/XMLConfigurationWriterTest.java  |  10 +-
 .../configuration/builders/TextBuilderTest.java    |   8 +-
 .../apache/rat/license/ILicenseBuilderTest.java    |  57 ++++
 .../org/apache/rat/license/SimpleLicenseTest.java  |   6 +-
 .../org/apache/rat/policy/DefaultPolicyTest.java   |   2 +-
 .../apache/rat/report/ConfigurationReportTest.java |   4 +-
 .../rat/report/xml/XmlReportFactoryTest.java       |  10 +-
 .../org/apache/rat/testhelpers/TestingLog.java}    |  70 +++--
 .../org/apache/rat/walker/DirectoryWalkerTest.java |   2 +-
 .../java/org/apache/rat/mp/AbstractRatMojo.java    |   2 +-
 .../main/java/org/apache/rat/anttasks/Report.java  |  22 +-
 .../antunit/report-bad-configurations.xml          |   2 +-
 src/changes/changes.xml                            |  24 +-
 48 files changed, 925 insertions(+), 371 deletions(-)
 create mode 100644 
apache-rat-core/src/main/java/org/apache/rat/DeprecationReporter.java
 delete mode 100644 
apache-rat-core/src/main/java/org/apache/rat/document/CompositeDocumentException.java
 create mode 100644 
apache-rat-core/src/test/java/org/apache/rat/license/ILicenseBuilderTest.java
 copy apache-rat-core/src/{main/java/org/apache/rat/utils/DefaultLog.java => 
test/java/org/apache/rat/testhelpers/TestingLog.java} (50%)

Reply via email to