This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a change to branch MDEP-923-copyFile in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git
omit 8fcd2000 Fix after review omit 92f800bf [MDEP-923] Extract copyFile method from AbstractDependencyMojo add cf2f3a9e [MDEP-928] Allow to exclude classes from dependency:analyze add 27d2eb9e [MDEP-929] Bump org.apache.maven.shared:maven-dependency-analyzer (#394) add 09775b3c [MDEP-799] tree: add optional output type json (#391) add a881ec62 [MDEP-923] Extract copyFile method from AbstractDependencyMojo add c2eaea2f Fix after review add bf0081e2 Next fix after review 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 (8fcd2000) \ N -- N -- N refs/heads/MDEP-923-copyFile (bf0081e2) 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: pom.xml | 20 +- .../invoker.properties | 0 .../{analyze => analyze-excluded-classes}/pom.xml | 22 +-- .../setup.groovy} | 10 +- .../src/main/java/Main.java | 0 .../verify.groovy | 15 +- .../dependency/analyze/AbstractAnalyzeMojo.java | 10 +- .../dependency/analyze/AnalyzeReportMojo.java | 11 +- .../dependency/fromConfiguration/CopyMojo.java | 5 +- .../fromDependencies/CopyDependenciesMojo.java | 7 +- .../dependency/tree/JsonDependencyNodeVisitor.java | 204 +++++++++++++++++++++ .../maven/plugins/dependency/tree/TreeMojo.java | 2 + .../maven/plugins/dependency/utils/CopyUtil.java | 9 +- .../dependency/AbstractDependencyMojoTestCase.java | 5 +- .../fromDependencies/TestCopyDependenciesMojo.java | 2 +- .../plugins/dependency/tree/TestTreeMojo.java | 79 ++++++++ 16 files changed, 354 insertions(+), 47 deletions(-) copy src/it/projects/{mdep-752-analyze-ignored-packaging-custom => analyze-excluded-classes}/invoker.properties (100%) copy src/it/projects/{analyze => analyze-excluded-classes}/pom.xml (82%) copy src/it/projects/{mdep-450-project-with-ancestor/verify.groovy => analyze-excluded-classes/setup.groovy} (80%) copy src/it/projects/{analyze-invalid-exclude => analyze-excluded-classes}/src/main/java/Main.java (100%) copy src/it/projects/{mdep-752-analyze-ignored-packaging-custom => analyze-excluded-classes}/verify.groovy (65%) create mode 100644 src/main/java/org/apache/maven/plugins/dependency/tree/JsonDependencyNodeVisitor.java