This is an automated email from the ASF dual-hosted git repository.
michaelo pushed a change to branch doxia-2.0.0
in repository https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git
omit e75f84d Prepare for Doxia 2.0.0
add e3894a0 Fix message
add d96baba [MCHECKSTYLE-428] Upgrade parent POM to version 39
add 71bc1ff [MPMD-377] Upgrade plugins and components (in ITs)
add b08abc2 [MCHECKSTYLE-435] Remove deprecated RSS feature
add fe2379d [MCHECKSTYLE-436] Replace CheckstyleReportGenerator with a
new CheckstyleReportRenderer
add 9b34b44 [maven-release-plugin] prepare release
maven-checkstyle-plugin-3.3.0
add 756a61f [maven-release-plugin] prepare for next development iteration
add f3e9603 clean up before test (#120)
add 472ed5a remove unnecessary I/O indirections (#119)
add 9ebda63 [MNG-6829] Replace StringUtils#isEmpty(String) and
#isNotEmpty(String) (#121)
add 1c271f1 [MCHECKSTYLE-412] Add option to exclude generated
sources/test-sources from default source/test-source directories
add 2b0fc93 [MCHECKSTYLE-438] Update and backfill release notes
new bcccf15 Prepare for Doxia 2.0.0
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 (e75f84d)
\
N -- N -- N refs/heads/doxia-2.0.0 (bcccf15)
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 | 87 +-
src/it/MCHECKSTYLE-219-no-license_success/pom.xml | 2 +-
.../invoker.properties | 0
.../{MCHECKSTYLE-295 => MCHECKSTYLE-412}/pom.xml | 40 +-
.../MCHECKSTYLE-412/src/main/antlr4/MyGrammar.g4 | 21 +
.../src/main/java/org/package-info.java | 0
.../verify.groovy | 2 +-
src/it/MCHECKSTYLE-70-multi-sourcefolder/pom.xml | 2 +-
.../checkstyle/AbstractCheckstyleReport.java | 492 ++++++-----
.../checkstyle/CheckstyleAggregateReport.java | 67 +-
.../maven/plugins/checkstyle/CheckstyleReport.java | 91 +-
.../checkstyle/CheckstyleReportGenerator.java | 919 ---------------------
.../checkstyle/CheckstyleReportRenderer.java | 709 ++++++++++++++++
.../checkstyle/CheckstyleViolationCheckMojo.java | 622 +++++++-------
.../plugins/checkstyle/CompositeAuditListener.java | 61 +-
.../apache/maven/plugins/checkstyle/IconTool.java | 147 ----
.../apache/maven/plugins/checkstyle/RuleUtil.java | 132 ++-
.../apache/maven/plugins/checkstyle/Violation.java | 379 ++++-----
.../checkstyle/exec/CheckstyleCheckerListener.java | 121 ++-
.../checkstyle/exec/CheckstyleExecutor.java | 13 +-
.../exec/CheckstyleExecutorException.java | 28 +-
.../checkstyle/exec/CheckstyleExecutorRequest.java | 218 ++---
.../plugins/checkstyle/exec/CheckstyleResults.java | 84 +-
.../checkstyle/exec/DefaultCheckstyleExecutor.java | 843 ++++++++-----------
.../resource/LicenseResourceManager.java | 53 +-
src/main/resources/checkstyle-report.properties | 1 -
src/main/resources/checkstyle-report_de.properties | 1 -
src/main/resources/checkstyle-report_fr.properties | 1 -
.../resources/checkstyle-report_pt_BR.properties | 1 -
src/main/resources/checkstyle-report_sv.properties | 1 -
src/site/markdown/history.md.vm | 7 +-
.../checkstyle/AbstractCheckstyleTestCase.java | 106 ++-
.../plugins/checkstyle/CheckstyleReportTest.java | 203 ++---
.../CheckstyleViolationCheckMojoTest.java | 167 ++--
.../checkstyle/DependencyArtifactStubFactory.java | 51 +-
.../maven/plugins/checkstyle/RuleUtilTest.java | 82 +-
.../maven/plugins/checkstyle/ViolationTest.java | 18 +-
.../CheckstyleReportListenerMultiSourceTest.java | 246 +++---
.../exec/CheckstyleReportListenerTest.java | 232 +++---
.../checkstyle/exec/CheckstyleResultsTest.java | 180 ++--
.../checkstyle/stubs/CheckstyleProjectStub.java | 37 +-
.../stubs/MavenProjectWithExceptionsStub.java | 19 +-
.../stubs/MavenProjectWithNoJxrPluginStub.java | 17 +-
.../checkstyle/stubs/MinMavenProjectStub.java | 65 +-
.../checkstyle/stubs/ModuleMavenProjectStub.java | 69 +-
.../checkstyle/stubs/MultiMavenProjectStub.java | 53 +-
46 files changed, 2871 insertions(+), 3819 deletions(-)
copy src/it/{MCHECKSTYLE-169 => MCHECKSTYLE-412}/invoker.properties (100%)
copy src/it/{MCHECKSTYLE-295 => MCHECKSTYLE-412}/pom.xml (70%)
create mode 100644 src/it/MCHECKSTYLE-412/src/main/antlr4/MyGrammar.g4
copy src/it/{MCHECKSTYLE-220 =>
MCHECKSTYLE-412}/src/main/java/org/package-info.java (100%)
copy src/it/{MCHECKSTYLE-220 => MCHECKSTYLE-412}/verify.groovy (91%)
delete mode 100644
src/main/java/org/apache/maven/plugins/checkstyle/CheckstyleReportGenerator.java
create mode 100644
src/main/java/org/apache/maven/plugins/checkstyle/CheckstyleReportRenderer.java
delete mode 100644
src/main/java/org/apache/maven/plugins/checkstyle/IconTool.java