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-whisker.git


    from eaa9a1c  Merge pull request #229 from 
apache/dependabot/maven/org.apache.commons-commons-collections4-4.5.0
     add 3d8b314  WHISKER-18: Replace deprecated method
     add 6aaec75  Fix unused imports.
     add d746805  WHISKER-18: Use log4j2
     add 21a72d1  WHISKER-18: Migrate to log4j2 and remove old logging mechanism
     add 8bed34c  WHISKER-18: Replace deprecated Velocity parameters
     add 1a1dc22  WHISKER-18: Replace deprecated Velocity parameters with 
compile option to ease future refactorings
     add c403a2c  WHISKER-18: Add note about remaining warning
     add c5e5a9e  WHISKER-18: Try to find windows build failures on GHA
     add 5aa5b17  WHISKER-18: Groovify itest verify scripts
     add 5a14535  WHISKER-18: Configure velocity in a modern way
     add 40706d2  Apply code simplifications
     add 55fcc4b  Play around with Java versions to see if Windows build 
failures disappear on GHA
     add 76bafdd  Perform an install on GHA
     add 0e08242  WHISKER-18: Add debug output to find test failures on GHA
     add a2e35cc  WHISKER-18: Adding invoker properties is not shown in GHA
     add 1aa9269  WHISKER-18: Adding invoker properties is not shown in GHA
     add fcb5cf5  Merge branch 'master' into feature/WHISKER-18
     add f9a95d0  WHISKER-18: Centralize dependency management of own modules 
in root pom to solve build error on GHA
     add f75c1d3  WHISKER-18: Try switching the JDK and cleanup workflow file
     add c235839  Merge branch 'master' into feature/WHISKER-18
     add d32e4ca  WHISKER-18: Rename VelocityEngine to LoggingVelocityEngine to 
further follow GHA error
     add 52ee738  WHISKER-18: Do not use localRepo during integration tests
     add d3e0cf8  WHISKER-18: Try updating invoker plugin
     add 31ffdba  WHISKER-18: Try disabling local repo for IT
     add b0cf94e  WHISKER-18: Further reduce invoker config
     add d46e5b3  WHISKER-18: Temporarily disable certain windows JDKs until 
merge to master has happened
     add 4ab019d  Merge pull request #215 from apache/feature/WHISKER-18

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml                        |  12 +-
 apache-whisker-app/pom.xml                         |  11 +-
 .../creadur/whisker/app/LicenseConfiguration.java  |   2 +-
 .../whisker/app/analysis/ResourceDescription.java  |   9 +-
 .../app/out/WriteResultsIntoDirectoryFactory.java  |   6 +-
 apache-whisker-cli/pom.xml                         |  22 +--
 .../java/org/apache/creadur/whisker/cli/Main.java  |   4 +-
 .../org/apache/creadur/whisker/cli/SystemLog.java  | 203 --------------------
 apache-whisker-maven-plugin/pom.xml                |  28 ++-
 .../src/it/example-copyright-notices/verify.groovy |   4 +-
 .../src/it/in-5/invoker.properties                 |   1 +
 .../src/it/in-5/verify.groovy                      |   4 +-
 .../src/it/license-family/verify.groovy            |   2 +-
 .../src/it/minimal/verify.groovy                   |   6 +-
 .../verify.groovy                                  |   2 +-
 .../src/it/third-party-corp/verify.groovy          |   2 +-
 .../src/it/third-party-group/verify.groovy         |   2 +-
 .../src/it/third-party/verify.groovy               |   2 +-
 .../src/it/whisker-10/verify.groovy                |   4 +-
 .../creadur/whisker/plugin/maven/GenerateMojo.java |   6 +-
 .../creadur/whisker/plugin/maven/MojoToJCLLog.java | 208 ---------------------
 .../org/apache/creadur/whisker/it/AnyCheck.java    |   2 +-
 .../java/org/apache/creadur/whisker/it/Check.java  |   6 +-
 .../apache/creadur/whisker/it/FileVerifier.java    |   3 +-
 .../org/apache/creadur/whisker/it/Helpers.java     |   6 +-
 .../java/org/apache/creadur/whisker/it/Latch.java  |   8 +-
 .../apache/creadur/whisker/it/TestAnyCheck.java    |   2 +-
 apache-whisker-model/pom.xml                       |   8 +-
 .../creadur/whisker/model/ByOrganisation.java      |   9 +-
 .../apache/creadur/whisker/model/Descriptor.java   |   2 +-
 .../apache/creadur/whisker/model/Organisation.java |   9 +-
 .../org/apache/creadur/whisker/model/Resource.java |   9 +-
 apache-whisker-scan/pom.xml                        |   8 +-
 .../org/apache/creadur/whisker/scan/Directory.java |   7 +-
 .../creadur/whisker/scan/FromFileSystem.java       |   9 +-
 apache-whisker-velocity/pom.xml                    |  19 +-
 ...ocityEngine.java => LoggingVelocityEngine.java} |  15 +-
 .../whisker/out/velocity/VelocityReports.java      |  24 +--
 .../creadur/whisker/out/velocity/EmptyLog.java     |  85 ---------
 .../out/velocity/TestLicenseGeneration.java        |   4 +-
 .../velocity/TestLicenseGenerationSourceURLs.java  |   4 +-
 .../whisker/out/velocity/TestNoticeGeneration.java |   4 +-
 .../whisker/out/velocity/TestRenderingHelper.java  |   8 +-
 apache-whisker-xml/pom.xml                         |   9 +-
 .../whisker/fromxml/JDomBuilderWorkTest.java       |   8 +-
 pom.xml                                            |  61 +++++-
 src/changes/changes.xml                            |   5 +-
 src/main/resources/log4j.xml                       |  18 ++
 src/test/resources/log4j2-test.xml                 |  18 ++
 49 files changed, 207 insertions(+), 703 deletions(-)
 delete mode 100644 
apache-whisker-cli/src/main/java/org/apache/creadur/whisker/cli/SystemLog.java
 create mode 100644 apache-whisker-maven-plugin/src/it/in-5/invoker.properties
 delete mode 100644 
apache-whisker-maven-plugin/src/main/java/org/apache/creadur/whisker/plugin/maven/MojoToJCLLog.java
 rename 
apache-whisker-velocity/src/main/java/org/apache/creadur/whisker/out/velocity/{VelocityEngine.java
 => LoggingVelocityEngine.java} (93%)
 delete mode 100644 
apache-whisker-velocity/src/test/java/org/apache/creadur/whisker/out/velocity/EmptyLog.java
 create mode 100644 src/main/resources/log4j.xml
 create mode 100644 src/test/resources/log4j2-test.xml

Reply via email to