You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by eo...@apache.org on 2019/04/22 21:29:27 UTC

[maven-checkstyle-plugin] branch MCHECKSTYLE-54-integration-tests updated (90a3267 -> d94ad17)

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

eolivelli pushed a change to branch MCHECKSTYLE-54-integration-tests
in repository https://gitbox.apache.org/repos/asf/maven-checkstyle-plugin.git.


 discard 90a3267  [MCHECKSTYLE-54] Add integration test
     new 9db6ed7  [MCHECKSTYLE-352] - Add documentation information for GitHub
     new ab6a941  [INFRA-16467] move components documentation out of CMS space
     new 94e059f  Fixed link to mailing list.
     new 5bbf2a4  [MCHECKSTYLE-359] - Upgrade maven-plugins parent to version 32
     new e288f40  [MCHECKSTYLE-360] - Upgrade maven-site-plugin to 3.7.1 for integration tests
     new f6abc63  Switch to asfMavenTlpPlgnBuild
     new 306d645  [MNGSITE-341] use https for sigs, hashes and KEYS
     new 9213f4b  [MPOM-205] use sha512 checksums instead of sha1
     new c4505ee  upgraded parent POM from 32 to 33
     new 0de3460  [MCHECKSTYLE-357] - Allow inline configuration for reporting
     new 84acd48  [MCHECKSTYLE-357] - Expand inline documentation
     new f6b9efc  Add Travis configuration file
     new eee0ba1  [MCHECKSTYLE-365] Correct counts in Rules section
     new bec97ad  Bump version tp 3.1.0-SNAPSHOT
     new 6704658  [MCHECKSTYLE-366] Upgrade checkstyle to a more recent version and require Java 8 as Checkstyle 7+ requires Java 8
     new d94ad17  [MCHECKSTYLE-54] Add integration test

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   (90a3267)
            \
             N -- N -- N   refs/heads/MCHECKSTYLE-54-integration-tests (d94ad17)

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 628 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:
 .github/pull_request_template.md                   |  29 +++
 .../invoker.properties => .travis.yml              |  20 +-
 CONTRIBUTING.md                                    |  91 +++++++++
 Jenkinsfile                                        |   2 +-
 README.md                                          |  97 ++++++++++
 pom.xml                                            |  15 +-
 src/it/MCHECKSTYLE-129/pom.xml                     |   2 +-
 src/it/MCHECKSTYLE-137/checkstyle.xml              |   9 +-
 .../MCHECKSTYLE-137/src/main/java/org/MyClass.java |  17 +-
 .../com/company/build-tools/checkstyle.xml         |   1 -
 src/it/MCHECKSTYLE-193/checkstyle.xml              |   3 -
 .../plugins/checkstyle/EmptyLoggingCheck.java      |   9 +-
 .../invoker.properties                             |   5 +-
 .../MCHECKSTYLE-357-with-header-override/pom.xml   | 201 ++++++++++++++++++++
 .../src/main/java/cat}/App.java                    |   9 +-
 .../verify.groovy                                  |  15 +-
 .../invoker.properties                             |   3 +-
 src/it/MCHECKSTYLE-357/pom.xml                     | 187 +++++++++++++++++++
 .../src/main/java/cat}/App.java                    |   9 +-
 .../verify.groovy                                  |  15 +-
 .../invoker.properties                             |   3 +-
 src/it/MCHECKSTYLE-365/pom.xml                     | 111 +++++++++++
 .../src/main/java/cat}/App.java                    |  11 +-
 .../src/main/resources/test.properties             |   3 +-
 src/it/MCHECKSTYLE-365/verify.groovy               |  45 +++++
 .../maven/plugins/checkstyle/its/AppTest.java      |   4 +-
 src/it/multi-modules-aggregate/maven_checks.xml    | 205 +++++++++++++++++++++
 src/it/multi-modules-aggregate/pom.xml             |  12 +-
 src/it/multi-modules-aggregate/verify.groovy       |   3 +-
 .../checkstyle/AbstractCheckstyleReport.java       |  71 ++++++-
 .../checkstyle/CheckstyleReportGenerator.java      |  19 +-
 .../checkstyle/CheckstyleViolationCheckMojo.java   |  20 +-
 .../checkstyle/exec/CheckstyleCheckerListener.java |  16 +-
 src/site/apt/examples/inline-checker-config.apt.vm |  74 ++++++++
 src/site/apt/examples/multi-module-config.apt.vm   |   4 +
 src/site/xdoc/download.xml.vm                      |   6 +-
 36 files changed, 1236 insertions(+), 110 deletions(-)
 create mode 100644 .github/pull_request_template.md
 copy src/it/MCHECKSTYLE-219-no-license_failure/invoker.properties => .travis.yml (76%)
 create mode 100644 CONTRIBUTING.md
 create mode 100644 README.md
 copy src/it/{MCHECKSTYLE-295 => MCHECKSTYLE-357-with-header-override}/invoker.properties (90%)
 create mode 100644 src/it/MCHECKSTYLE-357-with-header-override/pom.xml
 copy src/it/{MCHECKSTYLE-129/src/main/java/com/example => MCHECKSTYLE-357-with-header-override/src/main/java/cat}/App.java (75%)
 copy src/it/{checkstyle-report => MCHECKSTYLE-357-with-header-override}/verify.groovy (78%)
 copy src/it/{MCHECKSTYLE-295 => MCHECKSTYLE-357}/invoker.properties (94%)
 create mode 100644 src/it/MCHECKSTYLE-357/pom.xml
 copy src/it/{MCHECKSTYLE-129/src/main/java/com/example => MCHECKSTYLE-357/src/main/java/cat}/App.java (75%)
 copy src/it/{checkstyle-report => MCHECKSTYLE-357}/verify.groovy (78%)
 copy src/it/{MCHECKSTYLE-295 => MCHECKSTYLE-365}/invoker.properties (94%)
 create mode 100644 src/it/MCHECKSTYLE-365/pom.xml
 copy src/it/{MCHECKSTYLE-129/src/main/java/com/example => MCHECKSTYLE-365/src/main/java/cat}/App.java (73%)
 copy src/it/{MCHECKSTYLE-193 => MCHECKSTYLE-365}/src/main/resources/test.properties (88%)
 create mode 100644 src/it/MCHECKSTYLE-365/verify.groovy
 create mode 100644 src/it/multi-modules-aggregate/maven_checks.xml