This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a change to branch MCHECKSTYLE-289
in repository https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git.
discard b7fba80 [MCHECKSTYLE-289] enableRulesSummary option does not show
Rules with default configuration
add 2e93263 [MCHECKSTYLE-358] fix mailing list addres
add a233a05 update maven site plugin
add bd76a6f update maven site plugin
add 1656f61 Merge pull request #31 from apache/dox
add bde7932 (doc) Remove method to simply inherit it (#29)
add 36bde8d (doc) Remove unnecessary casts (#30)
add a2a054d added link to doc
add edaeaf8 added ASF Jira badge
add 1b2f990 fixed typo
add a0c6695 fixed broken links (MPIR 3)
add f4019c9 added README
add 84bb9b4 README improvement
add d16d027 (doc) Remove expression that always evaluates to true
add e138af1 add Reproducible Builds ok badge
add 4f16501 update ASF CI url
add 0f6269d update ASF CI url
add 354fad1 update JUnit
add 1ec4c24 Merge pull request #37 from apache/ver
add d8522d5 remove unused dependency
add 895b91f Merge pull request #38 from apache/ver2
add 4b4101c use try with resources instead of deprecated method
add 04be4e1 Merge pull request #39 from apache/close
add bd635da remove unused imports
add 91b8b16 Merge pull request #40 from apache/ver3
add 7688eb9 [MCHECKSTYLE-387] emit a warning when using an old version of
checkstyle.
add b259e84 [MCHECKSTYLE-385] Violation should be a value class
add 102e135 Add Github Actions tests for Java 8, 11, 16-ea and 17-ea
add 358c969 Bump animal-sniffer-maven-plugin from 1.18 to 1.19
add 7b92b74 Update maven-project-info-reports-plugin to 3.1.1
add 29ab795 [MCHECKSTYLE-392] Update historical release notes
add 3af1ab2 [MCHECKSTYLE-400] remove .travis.yml
add 8295569 Bump junit from 4.8.1 to 4.13.1 in /src/it/MCHECKSTYLE-163
add b5bb87f Bump build-helper-maven-plugin from 3.0.0 to 3.2.0
add 6b69179 Upgrade plugins
add a5aeeaf Use maven-checkstyle-plugin 3.1.1
add 27b9ef3 [maven-release-plugin] prepare release
maven-checkstyle-plugin-3.1.2
new 8e3c248 [MCHECKSTYLE-289] enableRulesSummary option does not show
Rules with default configuration
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 (b7fba80)
\
N -- N -- N refs/heads/MCHECKSTYLE-289 (8e3c248)
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:
.asf.yaml | 26 +++
.github/workflows/maven.yml | 51 +++++
.travis.yml | 33 ---
CONTRIBUTING.md | 91 --------
README.md | 23 ++-
pom.xml | 50 +++--
src/it/MCHECKSTYLE-163/pom.xml | 2 +-
.../checkstyle/AbstractCheckstyleReport.java | 2 +-
.../maven/plugins/checkstyle/CheckstyleReport.java | 8 -
.../checkstyle/CheckstyleViolationCheckMojo.java | 139 +++++++++----
.../maven/plugins/checkstyle/ReportResource.java | 2 +-
.../apache/maven/plugins/checkstyle/Violation.java | 229 +++++++++++++++++++++
.../checkstyle/exec/DefaultCheckstyleExecutor.java | 21 +-
.../resource/LicenseResourceManager.java | 2 +-
src/site/apt/index.apt.vm | 6 +-
src/site/markdown/history.md.vm | 26 ++-
.../plugins/checkstyle/CheckstyleReportTest.java | 1 -
.../CheckstyleViolationCheckMojoTest.java | 1 -
.../plugins/checkstyle/ReportResourceTest.java | 1 -
.../CheckstyleReportListenerMultiSourceTest.java | 6 -
.../exec/CheckstyleReportListenerTest.java | 3 -
.../checkstyle/exec/CheckstyleResultsTest.java | 3 -
22 files changed, 485 insertions(+), 241 deletions(-)
create mode 100644 .asf.yaml
create mode 100644 .github/workflows/maven.yml
delete mode 100644 .travis.yml
delete mode 100644 CONTRIBUTING.md
create mode 100644
src/main/java/org/apache/maven/plugins/checkstyle/Violation.java