Howdy,

So here is how one can figure this out: using the "reverse tree" feature.

Modified your reproducer command like this:

$ $ rm -rf maven-cache &&
MAVEN_ARGS="-Dmaven.repo.local.recordReverseTree=true
-Dmaven.repo.local=./maven-cache" mvn -V package

after invocation take a peek at recorded tracking data:
$ cat
maven-cache/log4j/log4j/1.2.12/.tracking/org.apache.maven.plugins_maven-dependency-plugin_jar_3.7.1.dep
log4j:log4j:pom:1.2.12
  log4j:log4j:jar:1.2.12 (compile) (plugin)
    commons-logging:commons-logging:jar:1.1 (compile) (plugin)
      commons-digester:commons-digester:jar:1.8 (compile) (plugin)
        org.apache.velocity:velocity-tools:jar:2.0 (compile) (plugin)
          org.apache.maven.doxia:doxia-site-renderer:jar:1.11.1 (compile)
(plugin)
            org.apache.maven.reporting:maven-reporting-impl:jar:3.2.0
(compile) (plugin)
              org.apache.maven.plugins:maven-dependency-plugin:jar:3.7.1 ()
(plugin)

Repository: central (https://repo.maven.apache.org/maven2/, default,
releases)

So, this node was _collected_ due commons-logging 1.1, and POM
commons-logging 1.1 really states dep on log4j 1.2.12:
https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom

But, as Karl said, your local repository contains POM only, not the JAR,
and this JAR was _not resolved_ (as its parent is "loser", was
eliminated as commons-logging 1.2 prevailed):
https://gist.github.com/cstamas/2843a4dacee418026f7f18206eabd315

The POM is downloaded to build a "dirty graph" of the dependency tree, and
in the next step is being _eliminated_ due reason noted in the tree, in
this case "(conflicts with 1.2)".
See
https://maven.apache.org/resolver-archives/resolver-2.0.0-alpha-11/common-misconceptions.html

So the POM is downloaded in the "collect" step, but is eliminated in the
"transform" step, and log4j (nor commons-logging 1.1) is never "resolved"
(JAR downloaded) that would be last step.

Thanks
T

On Wed, Jun 26, 2024 at 11:11 AM Karl Heinz Marbaise
<khmarba...@gmx.de.invalid> wrote:

> Hi,
>
> On 26.06.24 03:51, Robert Turner wrote:
> > On Tue, Jun 25, 2024 at 8:36 PM Karl Heinz Marbaise
> > <khmarba...@gmx.de.invalid> wrote:
> >
> >> Hi,
> >>
> >> I'm not sure if I understand your problem correct, because based on the
> >> copy-dependencies goal as stated in the docs:
> >>
> >> "Goal that copies the project dependencies from the repository to a
> >> defined location."
> >>
> >> it copies as stated...
> >>
> >> The question is what you expect to be copied and furthermore the the
> >> more important question: Why do you need to copy those parts?
> >>
> >>
> > Sorry if it wasn't very clear -- I have done a bit of digging into it
> just
> > now, and hopefully this additional information will help to explain what
> > I'm seeing (and I think it makes sense now, but still has an
> > undesirable result). (see below)
>
> It was not the question of digging into that... The question was: Why do
> need to use copy-dependencies in your build?
>
>
> >
> >
> >
> >> It would also very helpful to have a full pom file of that project or
> >> maybe a link to a github project (or alike)?
> >>
> >
> >
> > I think what is happening is that `maven-dependency-plugin` (3.7.1)
> depends
> > transitively on log4j 1.2.12 -- I'm still working through trying to
> figure
> > that out though.
> > Originally (a few months ago), I worked around it a while back by simply
> > disabling the copying of the dependencies to the target file (as visible
> by
> > the "comments" in the pom.xml [1] file), but that wasn't really ideal.
> >
> >
> > To reproduce, I created a trivial pom.xml [1], and used a clean local
> > repository for Maven, executing Maven as follows:
> >
> >      rm -rf maven-cache && MAVEN_OPTS="-Dmaven.repo.local=./maven-cache"
> mvn
> > package
> >
> > This "builds" the trivial empty JAR file, and copies no dependencies (as
> > none are declared).
> >
> >
> > However, my local Maven repository (cache) now contains a really old
> > version of log4j:
> >
> >      $ ls maven-cache/log4j/log4j/1.2.12/
> >      _remote.repositories   log4j-1.2.12.pom       log4j-1.2.12.pom.sha1
>
> first that's not quite correct, because you have only the "pom" file not
> the jar here...
>
> Furthermore having a pom file on your hard disk does not mean any code
> is being executed... furthermore the log4shell part was to have service
> started which accepts things etc...
>
>
> Kind regards
> Karl Heinz Marbaise
>
> >
> > Reviewing the downloading order from the central repository, log4j-1.2.12
> > seems to come after commons-logging-1.1, and as part of the
> > `dependency:3.7.1:copy-dependencies` goal. [3]
> >
> >
> >
> >>
> >> Another point is: do you use the most recent version of all plugins in
> >> your build ?
> >>
> >
> > In the sample pom.xml, I am using the latest `maven-dependency-plugin`
> > (3.7.1) -- in this specific sample, I didn't override all the system
> > plug-ins with the latest version to keep the sample file smaller.
> However,
> > we generally keep our plug-ins up-to-date every few months.
> >
> > ..snipped original posting...
> >
> >
> >
> > The "problem" is not that the old log4j gets copied to the output folder,
> > it's that it is fetched into the local Maven cache / repository, which is
> > then picked up by security tooling (which of course complains that it is
> > ancient and has vulnerabilities).
>
> Yes, but as I mentioned before there are "only" pom file not the jar
> itself...
>
> >
> > Looking at the dependencies for `maven-dependency-plugin` on
> >
> https://maven.apache.org/plugins/maven-dependency-plugin/dependencies.html
> > doesn't show log4j in the list -- so I'm a bit confused as to why the
> > package would be fetched to execute the goal.
> >
> > I'm sure I'm missing something obvious, so hopefully someone can clarify
> > what's going on.
> >
> > Thanks,
> >
> > Robert
> >
> >
> >
> > --- [x] referenced data ---
> >
> > [1] pom.xml
> >
> > <project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="
> > http://www.w3.org/2001/XMLSchema-instance";
> >           xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> > http://maven.apache.org/maven-v4_0_0.xsd";>
> >      <modelVersion>4.0.0</modelVersion>
> >      <groupId>org.fake</groupId>
> >      <artifactId>dependency-fetching-issue</artifactId>
> >      <packaging>jar</packaging>
> >      <name>dependency-fetching-issue</name>
> >      <version>1.${revision}</version>
> >      <description>Dependency Fetching Issue</description>
> >
> >      <build>
> >          <plugins>
> >              <plugin>
> >                  <artifactId>maven-dependency-plugin</artifactId>
> >                  <version>3.7.1</version>
> > <!--
> >      Disabled due to fetching all transitive dependencies into local
> Maven
> > cache and getting one of them flagged as a security issue
> > -->
> >                  <executions>
> >                      <execution>
> >                          <phase>package</phase>
> >                          <goals>
> >                              <goal>copy-dependencies</goal>
> >                          </goals>
> >                          <configuration>
> >
> > <outputDirectory>${project.build.directory}/lib</outputDirectory>
> >                          </configuration>
> >                      </execution>
> >                  </executions>
> > <!--
> > -->
> >               </plugin>
> >          </plugins>
> >      </build>
> >
> >      <dependencies>
> >      </dependencies>
> >      <properties>
> >          <!-- Default builder number / revision for local builds -->
> >          <revision>0-SNAPSHOT</revision>
> >
> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
> >      </properties>
> > </project>
> >
> >
> > [2] mvn --version output
> >
> > Apache Maven 3.9.6 (bc0240f3c744dd6b6ec2920b3cd08dcc295161ae)
> > Maven home: /opt/homebrew/Cellar/maven/3.9.6/libexec
> > Java version: 17.0.11, vendor: Amazon.com Inc., runtime:
> > /Library/Java/JavaVirtualMachines/amazon-corretto-17.jdk/Contents/Home
> > Default locale: en_CA, platform encoding: UTF-8
> > OS name: "mac os x", version: "14.5", arch: "aarch64", family: "mac"
> >
> >
> > [3]  downloading output for dependency:3.7.1:copy-dependencies goal
> >
> > [INFO] --- dependency:3.7.1:copy-dependencies (default) @
> > dependency-fetching-issue ---
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.pom
> > (1.5 kB at 22 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.12.0/doxia-1.12.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.12.0/doxia-1.12.0.pom
> > (18 kB at 248 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.pom
> > (1.5 kB at 20 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom
> > (3.8 kB at 62 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom
> > (1.6 kB at 23 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom
> > (18 kB at 277 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom
> > (1.6 kB at 19 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.pom
> > (7.6 kB at 81 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom
> > (3.4 kB at 44 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom
> > (14 kB at 191 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom
> > (750 B at 6.9 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom
> > (4.8 kB at 70 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.pom
> > (7.8 kB at 122 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/17/plexus-17.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/17/plexus-17.pom
> > (28 kB at 376 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom
> > (4.5 kB at 73 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom
> > (28 kB at 429 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom
> > (78 kB at 923 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom
> (15
> > kB at 258 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom
> > (20 kB at 245 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/69/commons-parent-69.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/69/commons-parent-69.pom
> > (77 kB at 794 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/31/apache-31.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/31/apache-31.pom
> (24
> > kB at 327 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.pom
> > (31 kB at 207 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/64/commons-parent-64.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/64/commons-parent-64.pom
> > (78 kB at 577 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom
> > (6.6 kB at 97 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom
> > (16 kB at 221 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom
> > (35 kB at 451 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom
> (17
> > kB at 241 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom
> > (5.0 kB at 57 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom
> > (13 kB at 197 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom
> > (19 kB at 256 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom
> > (56 kB at 717 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom
> > (14 kB at 222 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom
> > (5.0 kB at 73 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom
> > (13 kB at 206 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom
> > (6.0 kB at 97 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom
> > (2.4 kB at 35 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom
> > (9.3 kB at 128 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom
> > (23 kB at 353 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom
> (14
> > kB at 222 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom
> > (1.4 kB at 24 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom
> > (9.6 kB at 134 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom
> > (32 kB at 446 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom
> (4.5
> > kB at 70 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom
> > (2.1 kB at 33 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom
> > (3.0 kB at 50 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom
> > (8.2 kB at 121 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom
> > (7.7 kB at 113 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom
> > (3.0 kB at 41 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom
> > (2.0 kB at 29 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom
> > (2.7 kB at 39 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom
> > (2.0 kB at 28 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom
> > (2.8 kB at 25 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom
> > (2.7 kB at 38 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom
> > (22 kB at 283 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom
> > (6.1 kB at 81 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom
> > (11 kB at 157 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom
> > (13 kB at 192 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom
> > (22 kB at 305 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom
> > (14 kB at 175 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom
> > (18 kB at 280 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom
> > (357 B at 5.4 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom
> > (866 B at 14 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom
> > (7.0 kB at 109 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom
> > (6.2 kB at 62 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom
> > (145 B at 2.2 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom
> > (147 B at 1.6 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom
> > (167 B at 2.5 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom
> > (6.0 kB at 84 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom
> > (974 B at 15 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom
> > (2.3 kB at 31 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom
> > (163 B at 2.4 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom
> > (171 B at 2.3 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom
> > (3.3 kB at 45 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom
> > (2.2 kB at 35 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom
> > (11 kB at 167 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142
> B
> > at 2.2 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B
> at
> > 2.1 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom
> > (11 kB at 161 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom
> > (12 kB at 185 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom
> > (62 kB at 747 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom
> (15
> > kB at 205 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.pom
> > (6.0 kB at 94 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.pom
> > (3.9 kB at 61 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/16/plexus-16.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/16/plexus-16.pom
> > (28 kB at 364 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom
> > (5.6 kB at 82 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.pom
> > (20 kB at 281 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/65/commons-parent-65.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/65/commons-parent-65.pom
> > (78 kB at 812 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.pom
> > (22 kB at 334 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/66/commons-parent-66.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/66/commons-parent-66.pom
> > (77 kB at 917 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
> > (16 kB at 241 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.pom
> > (2.0 kB at 21 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.pom
> > (3.7 kB at 56 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.pom
> > (6.4 kB at 74 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom
> > (3.8 kB at 58 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.25.3/assertj-bom-3.25.3.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.25.3/assertj-bom-3.25.3.pom
> > (3.7 kB at 58 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.pom
> (2.4
> > kB at 38 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.pom
> > (7.0 kB at 103 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom
> > (2.8 kB at 48 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom
> > (18 kB at 162 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom
> > (44 kB at 573 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom
> > (2.6 kB at 41 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.pom
> > (5.4 kB at 66 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom
> > (11 kB at 173 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom
> > (5.3 kB at 81 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom
> > (5.1 kB at 74 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom
> > (3.9 kB at 62 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom
> > (22 kB at 277 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom
> > (24 kB at 308 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom
> (13
> > kB at 191 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom
> > (2.3 kB at 37 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom
> > (5.4 kB at 80 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom
> > (3.1 kB at 48 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom
> > (2.6 kB at 41 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom
> > (1.2 kB at 21 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom
> > (7.8 kB at 114 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom
> > (11 kB at 149 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom
> > (815 B at 13 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom
> > (4.2 kB at 61 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom
> > (17 kB at 228 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom
> > (4.0 kB at 67 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom
> > (17 kB at 262 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom
> > (5.5 kB at 89 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom
> > (11 kB at 170 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom
> > (5.0 kB at 78 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom
> > (4.6 kB at 56 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom
> > (41 kB at 574 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom
> > (13 kB at 211 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom
> > (2.7 kB at 46 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom
> > (12 kB at 184 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom
> > (5.9 kB at 87 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.jar
> > (12 kB at 168 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.jar
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.jar
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar
> > (11 kB at 82 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.jar
> > (20 kB at 148 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.jar
> > (12 kB at 88 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar
> > (60 kB at 446 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
> > (62 kB at 305 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar
> > (218 kB at 1.0 MB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.jar
> > (251 kB at 1.0 MB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar
> > (47 kB at 158 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar
> > (328 kB at 1.1 MB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar
> > (65 kB at 197 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar
> > (16 kB at 45 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar
> > (502 kB at 1.4 MB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar
> > (17 kB at 47 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar
> > (18 kB at 45 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar
> > (8.1 kB at 18 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
> > (780 kB at 1.5 MB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar
> > (262 kB at 480 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar
> > (347 kB at 572 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar
> > (90 kB at 143 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar
> > (189 kB at 293 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar
> > (144 kB at 219 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB
> at
> > 94 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar
> > (450 kB at 647 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457
> kB
> > at 603 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar
> > (225 kB at 296 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar
> > (501 kB at 617 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar
> > (193 kB at 212 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
> > (365 kB at 399 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-xml/3.0.0/plexus-xml-3.0.0.jar
> > (93 kB at 95 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar
> > (79 kB at 79 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
> > (588 kB at 584 kB/s)
> > Downloading from central:
> > https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar
> > (12 kB at 11 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.jar
> > (42 kB at 39 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.jar
> > (43 kB at 39 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar
> > Downloaded from central:
> > https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.jar
> (125
> > kB at 111 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.4.0/maven-common-artifact-filters-3.4.0.jar
> > (58 kB at 51 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar
> > (1.1 MB at 931 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar
> > (159 kB at 135 kB/s)
> > Downloading from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar
> > (4.2 kB at 3.6 kB/s)
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar
> > (151 kB at 122 kB/s)
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar
> > (149 kB at 118 kB/s)
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar
> > (168 kB at 133 kB/s)
> > Downloaded from central:
> >
> https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar
> > (6.8 MB at 4.0 MB/s)
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] BUILD SUCCESS
> > [INFO]
> > ------------------------------------------------------------------------
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>

Reply via email to