You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gi...@apache.org on 2022/11/06 12:19:09 UTC

[maven-dependency-plugin] branch dependabot/maven/src/it/projects/tree-verbose-small/junit-junit-4.13.1 updated (8bd86d60 -> 3760e94a)

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

github-bot pushed a change to branch dependabot/maven/src/it/projects/tree-verbose-small/junit-junit-4.13.1
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git


    omit 8bd86d60 Bump junit from 4.13 to 4.13.1 in /src/it/projects/tree-verbose-small
     add f2431f5a [MDEP-602] Log dependency warnings as errors when failOnWarning is set
     add fd1f89cf [MDEP-813] Require Maven 3.2.5
     add cd862f1f Use GitHub shared action v3
     add eeaa306f Bump mrm-maven-plugin from 1.2.0 to 1.4.1
     add 3b7576bb [MDEP-815] Upgrade Parent to 37
     add cd20d113 Bump maven-common-artifact-filters from 3.2.0 to 3.3.1
     add 233bc9fe Bump junit in /src/it/projects/analyze-testDependencyWithNonTestScope
     add 0517c514 Bump jsoup in /src/it/projects/analyze-testDependencyWithNonTestScope
     add 238a20de Bump junit in /src/it/projects/mdep-599-analyze-java9
     add eab4af12 Bump plexus-io from 3.2.0 to 3.4.0
     add fc060862 Bump mockito-core from 4.3.1 to 4.7.0
     add e38cbc2d Bump maven-dependency-tree from 3.1.0 to 3.2.0
     add 7a1057ca Bump jsoup from 1.15.2 to 1.15.3
     add ba17ed74 Bump maven-dependency-analyzer from 1.12.0 to 1.13.0
     add 52a2ed8c [MDEP-714] Add missing 'since' to ignoreUnusedRuntime parameter
     add c3c365b4 Bump jettyVersion from 9.4.45.v20220203 to 9.4.48.v20220622
     add 790dac4e [MDEP-782] Add ability to strip type
     add d753f423 [MDEP-782] Add since to strip type JavaDoc
     add 00cfb881 [MDEP-782] Remove todo comments
     add 62eb169a [MDEP-782] Remove unused stripType argument
     add 598907bc Bump plexus-utils from 3.4.1 to 3.4.2
     add a03a9565 Bump jsoup in /src/it/projects/analyze-testDependencyWithNonTestScope
     add 67afdae9 Bump mockito-core from 4.7.0 to 4.8.0
     add 0f069dbb [MDEP-716] - TestListClassesMojo logs too much
     add 87f52004 [MDEP-826] Upgrade maven-reporting-imp from 3.1.0 to 3.2.0
     add 6cfaa642 [MDEP-827] Use outputDirectory from AbstractMavenReport
     add 078f6aa5 spelling
     add 673ef9f4 add Reproducible Builds badge
     add ad98fc21 Bump mockito-core from 4.8.0 to 4.8.1
     add de654914 Bump jettyVersion from 9.4.48.v20220622 to 9.4.49.v20220914
     add 507320b9 [MDEP-834] Bump maven-common-artifact-filters from 3.3.1 to 3.3.2 (#250)
     add 3760e94a Bump junit from 4.13 to 4.13.1 in /src/it/projects/tree-verbose-small

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   (8bd86d60)
            \
             N -- N -- N   refs/heads/dependabot/maven/src/it/projects/tree-verbose-small/junit-junit-4.13.1 (3760e94a)

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.

No new revisions were added by this update.

Summary of changes:
 .github/pull_request_template.md                   |   2 +-
 .github/workflows/maven-verify.yml                 |   2 +-
 README.md                                          |   1 +
 pom.xml                                            | 126 ++++------
 .../analyze-testDependencyWithNonTestScope/pom.xml |   4 +-
 .../verify.bsh                                     |   2 +-
 .../projects/analyze/{verify.bsh => verify.groovy} |  18 +-
 src/it/projects/mdep-599-analyze-java9/pom.xml     |   2 +-
 .../invoker.properties                             |   1 +
 .../pom.xml                                        | 103 ++++----
 .../src/main/java/Main.java                        |   0
 .../verify.groovy                                  |  54 ++---
 .../dependency/analyze/AbstractAnalyzeMojo.java    |  26 +-
 .../dependency/analyze/AnalyzeReportMojo.java      |  97 ++------
 .../AbstractFromDependenciesMojo.java              |  26 ++
 .../fromDependencies/CopyDependenciesMojo.java     |   4 +-
 .../fromDependencies/UnpackDependenciesMojo.java   |   2 +-
 .../plugins/dependency/utils/DependencyUtil.java   |  10 +-
 .../dependency/utils/filters/DestFileFilter.java   |  21 +-
 .../plugins/dependency/TestListClassesMojo.java    |  31 ++-
 .../fromDependencies/TestCopyDependenciesMojo.java |   2 +-
 .../TestCopyDependenciesMojo2.java                 |  51 +++-
 .../TestUnpackDependenciesMojo.java                |   4 +-
 .../TestUnpackDependenciesMojo2.java               |   2 +-
 .../dependency/utils/TestDependencyUtil.java       |  88 +++++--
 .../utils/filters/TestDestFileFilter.java          |   2 +-
 .../list-test/testListClassesNotTransitive.txt     | 267 +++++++++++++++++++++
 .../unit/list-test/testListClassesTransitive.txt   | 267 +++++++++++++++++++++
 28 files changed, 932 insertions(+), 283 deletions(-)
 rename src/it/projects/analyze/{verify.bsh => verify.groovy} (54%)
 copy src/it/projects/{analyze-ignore-dependency => mdep-602-log-on-error-level-when-failOnWarning}/invoker.properties (96%)
 copy src/it/projects/{mdep-580_display-manifest-automodules => mdep-602-log-on-error-level-when-failOnWarning}/pom.xml (68%)
 copy src/it/projects/{analyze-ignore-unused-declared-dependency => mdep-602-log-on-error-level-when-failOnWarning}/src/main/java/Main.java (100%)
 copy src/it/projects/{mdep-580_display-manifest-automodules => mdep-602-log-on-error-level-when-failOnWarning}/verify.groovy (85%)
 create mode 100644 src/test/resources/unit/list-test/testListClassesNotTransitive.txt
 create mode 100644 src/test/resources/unit/list-test/testListClassesTransitive.txt