Skip to content

Instantly share code, notes, and snippets.

@s1037989
Last active August 25, 2023 02:40
Show Gist options
  • Save s1037989/42c28ae0e4c39bdc20de9003ef7c679a to your computer and use it in GitHub Desktop.
Save s1037989/42c28ae0e4c39bdc20de9003ef7c679a to your computer and use it in GitHub Desktop.
Q:
how can i build a jenkins plugin from source, including all of its java dependencies also from source? Understand that I will have access to all source code but no active connection to the internet at all. No binary artifacts can be fetched to assist with the build process and all java jar files must be built from source only.
A:
Building a Jenkins plugin from source, along with its Java dependencies, without any internet connection and only using source code can be a complex and involved process. Here's a general guide on how you might approach this:
1. **Set Up Your Environment:**
- **Install Java and Maven:** Ensure you have Java JDK and Maven installed on your machine. Make sure you're using compatible versions with the Jenkins source code.
2. **Obtain Source Code:**
- **Jenkins Core:** Download the source code of the Jenkins core from its official GitHub repository: https://github.com/jenkinsci/jenkins.
- **Plugin Source:** Clone the source code repository of the plugin you want to build.
3. **Build Dependencies:**
- **Dependency Analysis:** Carefully examine the plugin's `pom.xml` file to identify its direct and transitive dependencies. Also, inspect the Jenkins core `pom.xml` to identify dependencies that are provided by Jenkins.
- **Download Sources:** For each of the dependencies identified, you'll need to manually clone/download their source code repositories. This might involve visiting GitHub or other repositories, downloading ZIP files, and extracting them.
4. **Build Order:**
- **Jenkins Core:** Build the Jenkins core first. This is essential for plugins, as they often rely on Jenkins core classes.
- **Plugin Dependencies:** Build the plugin's direct dependencies from source. You might need to modify the plugin's `pom.xml` to use your locally built versions of these dependencies.
5. **Build Plugin:**
- **Modify POM:** Update the plugin's `pom.xml` file to use the locally built versions of the dependencies you've just compiled.
- **Build Plugin:** Use Maven to build the plugin. Navigate to the plugin's directory in the terminal and run `mvn clean install`. This will compile the plugin using your locally built dependencies.
6. **Test and Debug:**
- **Integration Testing:** Run Jenkins with your locally built plugin and test it thoroughly to ensure it's functioning correctly.
- **Debugging:** If you encounter errors or issues during testing, you'll need to debug the source code. This might involve stepping through the code, inspecting logs, and referring to the plugin's and Jenkins core's source code for insights.
Remember that this process can be intricate due to potential complexities in dependencies, build configurations, and compatibility issues. It's highly recommended to consult the official documentation for Jenkins plugin development and the documentation of each dependency you're building from source.
Also, keep in mind that Jenkins and its plugins are under continuous development, so what works today might not work exactly the same way in the future due to changes in code, dependencies, or build processes.
Lastly, consider reaching out to the Jenkins community for assistance, as they might have specific insights or tips related to building plugins and their dependencies from source without internet access.
# mvn archetype:generate -Dfilter=io.jenkins.archetypes:empty-plugin
[INFO] Scanning for projects...
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom (3.9 kB at 6.5 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom (13 kB at 204 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/21/maven-parent-21.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/21/maven-parent-21.pom (27 kB at 345 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/10/apache-10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/10/apache-10.pom (15 kB at 292 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar (25 kB at 188 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom (6.4 kB at 41 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom (9.2 kB at 108 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/22/maven-parent-22.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 475 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/11/apache-11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/11/apache-11.pom (15 kB at 257 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.jar (27 kB at 197 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-deploy-plugin/2.7/maven-deploy-plugin-2.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-deploy-plugin/2.7/maven-deploy-plugin-2.7.pom (5.6 kB at 140 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-deploy-plugin/2.7/maven-deploy-plugin-2.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-deploy-plugin/2.7/maven-deploy-plugin-2.7.jar (27 kB at 471 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.pom (21 kB at 336 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom (11 kB at 235 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/23/maven-parent-23.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 565 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/13/apache-13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/13/apache-13.pom (14 kB at 276 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.jar (124 kB at 1.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/1.3/maven-antrun-plugin-1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/1.3/maven-antrun-plugin-1.3.pom (4.7 kB at 97 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/12/maven-plugins-12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/12/maven-plugins-12.pom (12 kB at 210 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/9/maven-parent-9.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/9/maven-parent-9.pom (33 kB at 586 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/4/apache-4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/4/apache-4.pom (4.2 kB at 94 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/1.3/maven-antrun-plugin-1.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/1.3/maven-antrun-plugin-1.3.jar (24 kB at 386 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.pom (15 kB at 289 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/16/maven-plugins-16.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/16/maven-plugins-16.pom (13 kB at 259 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/15/maven-parent-15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 585 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/6/apache-6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/6/apache-6.pom (12 kB at 255 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.jar (209 kB at 577 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom (11 kB at 249 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar (153 kB at 2.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-release-plugin/2.5.3/maven-release-plugin-2.5.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-release-plugin/2.5.3/maven-release-plugin-2.5.3.pom (11 kB at 264 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/release/maven-release/2.5.3/maven-release-2.5.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/release/maven-release/2.5.3/maven-release-2.5.3.pom (5.0 kB at 126 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/27/maven-parent-27.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/27/maven-parent-27.pom (42 kB at 759 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/17/apache-17.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/17/apache-17.pom (16 kB at 426 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-release-plugin/2.5.3/maven-release-plugin-2.5.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-release-plugin/2.5.3/maven-release-plugin-2.5.3.jar (53 kB at 982 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/tools/maven-metadata.xml
Downloading from central: https://repo.maven.apache.org/maven2/org/jenkins-ci/tools/maven-metadata.xml
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-metadata.xml
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/maven-metadata.xml
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (14 kB at 125 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (21 kB at 825 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/tools/maven-metadata.xml (393 B at 1.7 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-metadata.xml (11 kB at 31 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/maven-metadata.xml (21 kB at 73 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-archetype-plugin/maven-metadata.xml
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-archetype-plugin/maven-metadata.xml
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-archetype-plugin/maven-metadata.xml (980 B at 36 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-archetype-plugin/maven-metadata.xml (980 B at 661 B/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-archetype-plugin/3.2.1/maven-archetype-plugin-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-archetype-plugin/3.2.1/maven-archetype-plugin-3.2.1.pom (12 kB at 109 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/maven-archetype/3.2.1/maven-archetype-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/maven-archetype/3.2.1/maven-archetype-3.2.1.pom (13 kB at 119 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/34/maven-parent-34.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/34/maven-parent-34.pom (44 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/23/apache-23.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/23/apache-23.pom (18 kB at 509 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-archetype-plugin/3.2.1/maven-archetype-plugin-3.2.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-archetype-plugin/3.2.1/maven-archetype-plugin-3.2.1.jar (101 kB at 508 kB/s)
[INFO]
[INFO] ------------------< org.apache.maven:standalone-pom >-------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] >>> maven-archetype-plugin:3.2.1:generate (default-cli) > generate-sources @ standalone-pom >>>
[INFO]
[INFO] <<< maven-archetype-plugin:3.2.1:generate (default-cli) < generate-sources @ standalone-pom <<<
[INFO]
[INFO]
[INFO] --- maven-archetype-plugin:3.2.1:generate (default-cli) @ standalone-pom ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-catalog/3.2.1/archetype-catalog-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-catalog/3.2.1/archetype-catalog-3.2.1.pom (1.9 kB at 8.6 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-models/3.2.1/archetype-models-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-models/3.2.1/archetype-models-3.2.1.pom (2.7 kB at 16 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 115 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 523 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-descriptor/3.2.1/archetype-descriptor-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-descriptor/3.2.1/archetype-descriptor-3.2.1.pom (2.0 kB at 12 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-common/3.2.1/archetype-common-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-common/3.2.1/archetype-common-3.2.1.pom (18 kB at 205 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.16/groovy-all-2.4.16.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.16/groovy-all-2.4.16.pom (22 kB at 541 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ivy/ivy/2.5.0/ivy-2.5.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ivy/ivy/2.5.0/ivy-2.5.0.pom (6.8 kB at 182 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/7/apache-7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/7/apache-7.pom (14 kB at 328 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 17 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 117 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom (4.6 kB at 33 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-invoker/3.0.1/maven-invoker-3.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-invoker/3.0.1/maven-invoker-3.0.1.pom (4.9 kB at 65 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom (5.1 kB at 53 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/31/maven-parent-31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/31/maven-parent-31.pom (44 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/19/apache-19.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/19/apache-19.pom (16 kB at 411 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 122 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 124 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/30/maven-parent-30.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/30/maven-parent-30.pom (42 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/18/apache-18.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/18/apache-18.pom (16 kB at 464 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.6/commons-io-2.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 332 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/42/commons-parent-42.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 1.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 77 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.0/maven-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 591 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 66 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 25 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 137 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 480 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.0/maven-model-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 97 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 45 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 52 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 234 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/6/forge-parent-6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 291 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 112 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom (11 kB at 341 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 146 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.0/maven-core-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 162 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 55 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 65 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 93 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/spice/spice-parent/12/spice-parent-12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 194 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/4/forge-parent-4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 233 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 65 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 51 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 65 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 163 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 80 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 33 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 236 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 125 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 493 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 144 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 299 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom (5.3 kB at 151 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom (5.1 kB at 159 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/33/maven-parent-33.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/33/maven-parent-33.pom (45 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/21/apache-21.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/21/apache-21.pom (17 kB at 443 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom (5.0 kB at 156 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom (2.7 kB at 66 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom (11 kB at 316 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 376 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/39/commons-parent-39.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 1.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/16/apache-16.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/16/apache-16.pom (16 kB at 431 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 83 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.3 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 581 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/10/forge-parent-10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 366 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity/1.7/velocity-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 339 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.4/commons-lang-2.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 349 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/9/commons-parent-9.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 522 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/ibm/icu/icu4j/70.1/icu4j-70.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/ibm/icu/icu4j/70.1/icu4j-70.1.pom (4.9 kB at 69 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.1/maven-archiver-3.5.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.1/maven-archiver-3.5.1.pom (5.4 kB at 141 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.pom (5.8 kB at 126 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.3/plexus-archiver-4.2.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.3/plexus-archiver-4.2.3.pom (4.9 kB at 133 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/6.4/plexus-6.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/6.4/plexus-6.4.pom (26 kB at 638 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom (4.5 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.20/commons-compress-1.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.20/commons-compress-1.20.pom (18 kB at 446 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/48/commons-parent-48.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 1.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/iq80/snappy/snappy/0.4/snappy-0.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/iq80/snappy/snappy/0.4/snappy-0.4.pom (14 kB at 254 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.8/xz-1.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.8/xz-1.8.pom (1.9 kB at 41 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom (2.7 kB at 66 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.pom (4.4 kB at 107 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/6.1/plexus-6.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/6.1/plexus-6.1.pom (24 kB at 643 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.pom (823 B at 13 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interactivity/1.1/plexus-interactivity-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interactivity/1.1/plexus-interactivity-1.1.pom (1.7 kB at 42 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/6.5/plexus-components-6.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/6.5/plexus-components-6.5.pom (2.5 kB at 42 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 677 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 279 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/47/commons-parent-47.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 1.8 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-script-interpreter/1.2/maven-script-interpreter-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-script-interpreter/1.2/maven-script-interpreter-1.2.pom (4.0 kB at 48 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/0.3/maven-shared-utils-0.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/0.3/maven-shared-utils-0.3.pom (4.0 kB at 119 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom (4.8 kB at 125 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom (965 B at 27 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy/2.0.1/groovy-2.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy/2.0.1/groovy-2.0.1.pom (16 kB at 167 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/antlr/antlr/2.7.7/antlr-2.7.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/antlr/antlr/2.7.7/antlr-2.7.7.pom (632 B at 18 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/4.0/asm-tree-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/4.0/asm-tree-4.0.pom (2.1 kB at 59 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-parent/4.0/asm-parent-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-parent/4.0/asm-parent-4.0.pom (5.5 kB at 172 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/ow2/1.3/ow2-1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/ow2/1.3/ow2-1.3.pom (8.9 kB at 247 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/4.0/asm-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/4.0/asm-4.0.pom (1.9 kB at 62 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/4.0/asm-commons-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/4.0/asm-commons-4.0.pom (2.1 kB at 72 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/4.0/asm-util-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/4.0/asm-util-4.0.pom (2.1 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/4.0/asm-analysis-4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/4.0/asm-analysis-4.0.pom (2.1 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/beanshell/bsh/2.0b4/bsh-2.0b4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/beanshell/bsh/2.0b4/bsh-2.0b4.pom (1.2 kB at 29 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom (1.4 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.8.1/ant-1.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.8.1/ant-1.8.1.pom (8.8 kB at 75 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.8.1/ant-parent-1.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.8.1/ant-parent-1.8.1.pom (4.3 kB at 45 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-catalog/3.2.1/archetype-catalog-3.2.1.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-descriptor/3.2.1/archetype-descriptor-3.2.1.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-common/3.2.1/archetype-common-3.2.1.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.16/groovy-all-2.4.16.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ivy/ivy/2.5.0/ivy-2.5.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-catalog/3.2.1/archetype-catalog-3.2.1.jar (19 kB at 163 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-common/3.2.1/archetype-common-3.2.1.jar (181 kB at 720 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar (51 kB at 183 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ivy/ivy/2.5.0/ivy-2.5.0.jar (1.4 MB at 4.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar (148 kB at 439 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar (305 kB at 871 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.6/commons-io-2.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar (30 kB at 79 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/ibm/icu/icu4j/70.1/icu4j-70.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar (108 kB at 279 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.1/maven-archiver-3.5.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.1/maven-archiver-3.5.1.jar (26 kB at 60 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 481 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar (202 kB at 413 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar (153 kB at 302 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar (46 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.jar (154 kB at 248 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/archetype/archetype-descriptor/3.2.1/archetype-descriptor-3.2.1.jar (24 kB at 36 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar (85 kB at 128 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar (472 kB at 676 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.20/commons-compress-1.20.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.2/plexus-archiver-4.2.2.jar (194 kB at 272 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/iq80/snappy/snappy/0.4/snappy-0.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar (76 kB at 106 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.8/xz-1.8.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/iq80/snappy/snappy/0.4/snappy-0.4.jar (58 kB at 77 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.8/xz-1.8.jar (109 kB at 143 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.jar (9.4 kB at 12 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar (4.2 kB at 5.1 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-invoker/3.0.1/maven-invoker-3.0.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.16/groovy-all-2.4.16.jar (7.2 MB at 8.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar (159 kB at 177 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-invoker/3.0.1/maven-invoker-3.0.1.jar (33 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar (26 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.jar (61 kB at 65 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 271 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity/1.7/velocity-1.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 8.1 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.4/commons-lang-2.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/ibm/icu/icu4j/70.1/icu4j-70.1.jar (14 MB at 13 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.20/commons-compress-1.20.jar (632 kB at 610 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-script-interpreter/1.2/maven-script-interpreter-1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 472 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy/2.0.1/groovy-2.0.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 235 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/antlr/antlr/2.7.7/antlr-2.7.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-script-interpreter/1.2/maven-script-interpreter-1.2.jar (22 kB at 19 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/4.0/asm-tree-4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/4.0/asm-tree-4.0.jar (22 kB at 19 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/4.0/asm-commons-4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 493 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/4.0/asm-4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/4.0/asm-commons-4.0.jar (38 kB at 31 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/4.0/asm-util-4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/4.0/asm-4.0.jar (46 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/4.0/asm-analysis-4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 359 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/4.0/asm-util-4.0.jar (37 kB at 29 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.8.1/ant-1.8.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/antlr/antlr/2.7.7/antlr-2.7.7.jar (445 kB at 353 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/4.0/asm-analysis-4.0.jar (20 kB at 16 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar (282 kB at 202 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy/2.0.1/groovy-2.0.1.jar (3.3 MB at 2.1 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.8.1/ant-1.8.1.jar (1.5 MB at 988 kB/s)
[INFO] Generating project in Interactive mode
[INFO] No archetype defined. Using maven-archetype-quickstart (org.apache.maven.archetypes:maven-archetype-quickstart:1.0)
Choose archetype:
1: remote -> io.jenkins.archetypes:empty-plugin (Skeleton of a Jenkins plugin with a POM and an empty source tree.)
Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): : 1
Choose io.jenkins.archetypes:empty-plugin version:
1: 1.0
2: 1.1
3: 1.2
4: 1.3
5: 1.4
6: 1.5
7: 1.6
8: 1.7
9: 1.8
10: 1.9
11: 1.10
12: 1.11
13: 1.12
14: 1.13
15: 1.14
16: 1.15
17: 1.16
18: 1.17
19: 1.19
20: 1.20
Choose a number: 20: 20
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/archetypes/empty-plugin/1.20/empty-plugin-1.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/archetypes/empty-plugin/1.20/empty-plugin-1.20.pom (2.8 kB at 15 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/archetypes/archetypes-parent/1.20/archetypes-parent-1.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/archetypes/archetypes-parent/1.20/archetypes-parent-1.20.pom (9.8 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/archetypes/empty-plugin/1.20/empty-plugin-1.20.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/archetypes/empty-plugin/1.20/empty-plugin-1.20.jar (9.7 kB at 84 kB/s)
[INFO] Using property: groupId = unused
[INFO] Using property: package = unused
[INFO] Using property: hostOnJenkinsGitHub = true
Define value for property 'artifactId': HelloWorldNotifier
Define value for property 'version' 1.0-SNAPSHOT: :
Confirm properties configuration:
groupId: unused
package: unused
hostOnJenkinsGitHub: true
artifactId: HelloWorldNotifier
version: 1.0-SNAPSHOT
Y: : Y
[INFO] ----------------------------------------------------------------------------
[INFO] Using following parameters for creating project from Archetype: empty-plugin:1.20
[INFO] ----------------------------------------------------------------------------
[INFO] Parameter: groupId, Value: unused
[INFO] Parameter: artifactId, Value: HelloWorldNotifier
[INFO] Parameter: version, Value: 1.0-SNAPSHOT
[INFO] Parameter: package, Value: unused
[INFO] Parameter: packageInPathFormat, Value: unused
[INFO] Parameter: package, Value: unused
[INFO] Parameter: hostOnJenkinsGitHub, Value: true
[INFO] Parameter: groupId, Value: unused
[INFO] Parameter: artifactId, Value: HelloWorldNotifier
[INFO] Parameter: version, Value: 1.0-SNAPSHOT
[WARNING] Don't override file /root/hw/HelloWorldNotifier/
[INFO] Executing META-INF/archetype-post-generate.groovy post-generation script
[package:unused, hostOnJenkinsGitHub:true, groupId:unused, artifactId:HelloWorldNotifier, version:1.0-SNAPSHOT]
[INFO] Project created from Archetype in dir: /root/hw/HelloWorldNotifier
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 02:29 min
[INFO] Finished at: 2023-08-25T01:32:26Z
[INFO] ------------------------------------------------------------------------
# cat ~/hw/HelloWorldNotifier/pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.71</version>
<relativePath />
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>HelloWorldNotifier</artifactId>
<version>${revision}${changelist}</version>
<packaging>hpi</packaging>
<name>TODO Plugin</name>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/license/mit/</url>
</license>
</licenses>
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:https://github.com/${gitHubRepo}</connection>
<developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection>
<tag>${scmTag}</tag>
<url>https://github.com/${gitHubRepo}</url>
</scm>
<properties>
<revision>1.0</revision>
<changelist>-SNAPSHOT</changelist>
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.version>2.387.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<spotless.check.skip>false</spotless.check.skip>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.387.x</artifactId>
<version>2278.v47b_4508e256a</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
</project>
# mvn install
[INFO] Scanning for projects...
[INFO]
[INFO] ---------------< io.jenkins.plugins:HelloWorldNotifier >----------------
[INFO] Building TODO Plugin 1.0-SNAPSHOT
[INFO] --------------------------------[ hpi ]---------------------------------
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-maven-plugin/4.7.3.5/spotbugs-maven-plugin-4.7.3.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-maven-plugin/4.7.3.5/spotbugs-maven-plugin-4.7.3.5.pom (35 kB at 55 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/hazendaz/base-parent/40/base-parent-40.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/hazendaz/base-parent/40/base-parent-40.pom (90 kB at 599 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-bom/4.0.12/groovy-bom-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-bom/4.0.12/groovy-bom-4.0.12.pom (27 kB at 168 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-maven-plugin/4.7.3.5/spotbugs-maven-plugin-4.7.3.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-maven-plugin/4.7.3.5/spotbugs-maven-plugin-4.7.3.5.jar (166 kB at 520 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/3.1.1/maven-install-plugin-3.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/3.1.1/maven-install-plugin-3.1.1.pom (7.8 kB at 95 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/3.1.1/maven-install-plugin-3.1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-install-plugin/3.1.1/maven-install-plugin-3.1.1.jar (31 kB at 219 kB/s)
[INFO]
[INFO] --- maven-hpi-plugin:3.47:validate (default-validate) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-hpi-plugin:3.47:validate-hpi (default-validate-hpi) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-enforcer-plugin:3.3.0:enforce (display-info) @ HelloWorldNotifier ---
[INFO] Rule 0: io.jenkins.tools.incrementals.enforcer.RequireExtensionVersion passed
[INFO] Rule 1: org.apache.maven.enforcer.rules.version.RequireMavenVersion passed
[INFO] Rule 2: org.apache.maven.enforcer.rules.version.RequireJavaVersion passed
[INFO] Rule 3: org.codehaus.mojo.extraenforcer.dependencies.EnforceBytecodeVersion passed
[INFO] Rule 4: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed
[INFO] Rule 5: org.apache.maven.enforcer.rules.dependency.RequireUpperBoundDeps passed
[INFO]
[INFO] --- maven-enforcer-plugin:3.3.0:enforce (no-snapshots-in-release) @ HelloWorldNotifier ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.RequireReleaseDeps passed
[INFO]
[INFO] --- localizer-maven-plugin:1.31:generate (default) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-resources-plugin:3.3.1:resources (default-resources) @ HelloWorldNotifier ---
[INFO] Copying 1 resource from src/main/resources to target/classes
[INFO]
[INFO] --- flatten-maven-plugin:1.5.0:flatten (flatten) @ HelloWorldNotifier ---
[INFO] Generating flattened POM of project io.jenkins.plugins:HelloWorldNotifier:hpi:1.0-SNAPSHOT...
[INFO]
[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ HelloWorldNotifier ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- access-modifier-checker:1.32:enforce (default-enforce) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-hpi-plugin:3.47:insert-test (default-insert-test) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-antrun-plugin:3.1.0:run (createTempDir) @ HelloWorldNotifier ---
[INFO] Executing tasks
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:3.3.1:testResources (default-testResources) @ HelloWorldNotifier ---
[INFO] skip non existing resourceDirectory /root/hw/HelloWorldNotifier/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.11.0:testCompile (default-testCompile) @ HelloWorldNotifier ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-hpi-plugin:3.47:test-hpl (default-test-hpl) @ HelloWorldNotifier ---
[INFO] Generating /root/hw/HelloWorldNotifier/target/test-classes/the.hpl
[INFO]
[INFO] --- maven-hpi-plugin:3.47:resolve-test-dependencies (default-resolve-test-dependencies) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-hpi-plugin:3.47:test-runtime (default-test-runtime) @ HelloWorldNotifier ---
[INFO] Setting jenkins.addOpens to --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.desktop/com.sun.beans.introspect=ALL-UNNAMED
[INFO] Setting jenkins.insaneHook to --patch-module='java.base=/root/hw/HelloWorldNotifier/target/patch-modules/org-netbeans-insane-hook.jar' --add-exports=java.base/org.netbeans.insane.hook=ALL-UNNAMED
[INFO]
[INFO] --- maven-surefire-plugin:3.1.2:test (default-test) @ HelloWorldNotifier ---
[INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
Running tests for io.jenkins.plugins:HelloWorldNotifier:1.0-SNAPSHOT
[INFO] Running InjectedTest
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.779 s -- in InjectedTest
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- license-maven-plugin:104.v2171757ee6dd:process (default) @ HelloWorldNotifier ---
[INFO] Generated /root/hw/HelloWorldNotifier/target/HelloWorldNotifier/WEB-INF/licenses.xml
[INFO]
[INFO] --- maven-hpi-plugin:3.47:hpi (default-hpi) @ HelloWorldNotifier ---
[INFO] Generating /root/hw/HelloWorldNotifier/target/HelloWorldNotifier/META-INF/MANIFEST.MF
[INFO] Checking for attached .jar artifact ...
[INFO] Generating jar /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.jar
[INFO] Building jar: /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.jar
[INFO] Exploding webapp...
[INFO] Copy webapp webResources to /root/hw/HelloWorldNotifier/target/HelloWorldNotifier
[INFO] Assembling webapp HelloWorldNotifier in /root/hw/HelloWorldNotifier/target/HelloWorldNotifier
[INFO] Generating hpi /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.hpi
[INFO] Building jar: /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.hpi
[INFO]
[INFO] --- maven-jar-plugin:3.3.0:test-jar (maybe-test-jar) @ HelloWorldNotifier ---
[INFO] Skipping packaging of the test-jar
[INFO]
[INFO] >>> spotbugs-maven-plugin:4.7.3.5:check (spotbugs) > :spotbugs @ HelloWorldNotifier >>>
[INFO]
[INFO] --- spotbugs-maven-plugin:4.7.3.5:spotbugs (spotbugs) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs/4.7.3/spotbugs-4.7.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs/4.7.3/spotbugs-4.7.3.pom (6.9 kB at 132 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.pom (2.6 kB at 58 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.5/asm-util-9.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.5/asm-util-9.5.pom (2.9 kB at 31 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/bcel/bcel/6.5.0/bcel-6.5.0.pom (21 kB at 244 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/50/commons-parent-50.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/50/commons-parent-50.pom (76 kB at 1.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.pom (21 kB at 386 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.0/slf4j-api-2.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.0/slf4j-api-2.0.0.pom (1.6 kB at 34 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.0/slf4j-parent-2.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.0/slf4j-parent-2.0.0.pom (16 kB at 257 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson/2.9.1/gson-2.9.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson/2.9.1/gson-2.9.1.pom (8.2 kB at 175 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson-parent/2.9.1/gson-parent-2.9.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson-parent/2.9.1/gson-parent-2.9.1.pom (4.5 kB at 100 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen/1.2.0/jaxen-1.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen/1.2.0/jaxen-1.2.0.pom (15 kB at 297 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/saxon/Saxon-HE/11.4/Saxon-HE-11.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/saxon/Saxon-HE/11.4/Saxon-HE-11.4.pom (4.2 kB at 90 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/xmlresolver/xmlresolver/4.4.3/xmlresolver-4.4.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/xmlresolver/xmlresolver/4.4.3/xmlresolver-4.4.3.pom (2.3 kB at 65 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/client5/httpclient5/5.1.3/httpclient5-5.1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/client5/httpclient5/5.1.3/httpclient5-5.1.3.pom (5.8 kB at 141 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/client5/httpclient5-parent/5.1.3/httpclient5-parent-5.1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/client5/httpclient5-parent/5.1.3/httpclient5-parent-5.1.3.pom (14 kB at 414 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-parent/12/httpcomponents-parent-12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-parent/12/httpcomponents-parent-12.pom (32 kB at 591 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5/5.1.3/httpcore5-5.1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5/5.1.3/httpcore5-5.1.3.pom (3.8 kB at 81 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5-parent/5.1.3/httpcore5-parent-5.1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5-parent/5.1.3/httpcore5-parent-5.1.3.pom (10 kB at 233 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5-h2/5.1.3/httpcore5-h2-5.1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5-h2/5.1.3/httpcore5-h2-5.1.3.pom (3.5 kB at 19 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 98 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (13 kB at 306 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.pom (2.7 kB at 72 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.pom (24 kB at 326 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j/2.19.0/log4j-2.19.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j/2.19.0/log4j-2.19.0.pom (73 kB at 1.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/logging-parent/5/logging-parent-5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/logging-parent/5/logging-parent-5.pom (3.3 kB at 89 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/24/apache-24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/24/apache-24.pom (20 kB at 408 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-bom/2.19.0/log4j-bom-2.19.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-bom/2.19.0/log4j-bom-2.19.0.pom (9.2 kB at 104 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.pom (16 kB at 194 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.pom (1.2 kB at 27 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.7/slf4j-parent-2.0.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.7/slf4j-parent-2.0.7.pom (17 kB at 419 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.pom (2.7 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-simple/2.0.7/slf4j-simple-2.0.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-simple/2.0.7/slf4j-simple-2.0.7.pom (1.1 kB at 24 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/bcel/bcel/6.6.1/bcel-6.6.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/bcel/bcel/6.6.1/bcel-6.6.1.pom (21 kB at 397 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom (9.4 kB at 228 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom (13 kB at 321 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.12/groovy-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.12/groovy-4.0.12.pom (24 kB at 190 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-ant/4.0.12/groovy-ant-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-ant/4.0.12/groovy-ant-4.0.12.pom (24 kB at 406 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-groovydoc/4.0.12/groovy-groovydoc-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-groovydoc/4.0.12/groovy-groovydoc-4.0.12.pom (23 kB at 414 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-dateutil/4.0.12/groovy-dateutil-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-dateutil/4.0.12/groovy-dateutil-4.0.12.pom (23 kB at 434 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-docgenerator/4.0.12/groovy-docgenerator-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-docgenerator/4.0.12/groovy-docgenerator-4.0.12.pom (23 kB at 410 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-templates/4.0.12/groovy-templates-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-templates/4.0.12/groovy-templates-4.0.12.pom (23 kB at 446 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.12/groovy-xml-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.12/groovy-xml-4.0.12.pom (23 kB at 443 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1.pom (18 kB at 374 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-json/4.0.12/groovy-json-4.0.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-json/4.0.12/groovy-json-4.0.12.pom (23 kB at 426 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/javaparser/javaparser-core/3.25.3/javaparser-core-3.25.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/javaparser/javaparser-core/3.25.3/javaparser-core-3.25.3.pom (5.0 kB at 46 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/javaparser/javaparser-parent/3.25.3/javaparser-parent-3.25.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/javaparser/javaparser-parent/3.25.3/javaparser-parent-3.25.3.pom (24 kB at 264 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/32.0.1-jre/guava-32.0.1-jre.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/32.0.1-jre/guava-32.0.1-jre.pom (11 kB at 284 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/32.0.1-jre/guava-parent-32.0.1-jre.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/32.0.1-jre/guava-parent-32.0.1-jre.pom (21 kB at 507 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom (2.1 kB at 41 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom (2.2 kB at 51 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom (11 kB at 226 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom (2.9 kB at 68 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.pom (7.6 kB at 177 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom (3.8 kB at 99 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom (1.6 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom (18 kB at 385 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom (1.6 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.1.0/maven-core-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.1.0/maven-core-3.1.0.pom (6.9 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.1.0/maven-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.1.0/maven-3.1.0.pom (22 kB at 464 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.1.0/maven-model-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.1.0/maven-model-3.1.0.pom (3.8 kB at 106 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom (3.1 kB at 87 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom (20 kB at 553 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.1.0/maven-settings-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.1.0/maven-settings-3.1.0.pom (1.8 kB at 51 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.1.0/maven-settings-builder-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.1.0/maven-settings-builder-3.1.0.pom (2.3 kB at 65 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.16/plexus-interpolation-1.16.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.16/plexus-interpolation-1.16.pom (1.0 kB at 29 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom (2.8 kB at 69 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.1.0/maven-repository-metadata-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.1.0/maven-repository-metadata-3.1.0.pom (1.9 kB at 53 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.1.0/maven-artifact-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.1.0/maven-artifact-3.1.0.pom (1.6 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.1.0/maven-plugin-api-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.1.0/maven-plugin-api-3.1.0.pom (3.0 kB at 76 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M2a/org.eclipse.sisu.plexus-0.0.0.M2a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M2a/org.eclipse.sisu.plexus-0.0.0.M2a.pom (5.9 kB at 140 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-plexus/0.0.0.M2a/sisu-plexus-0.0.0.M2a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-plexus/0.0.0.M2a/sisu-plexus-0.0.0.M2a.pom (7.9 kB at 180 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/10.0.1/guava-10.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/10.0.1/guava-10.0.1.pom (5.4 kB at 120 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/10.0.1/guava-parent-10.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/10.0.1/guava-parent-10.0.1.pom (2.0 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom (965 B at 24 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom (10 kB at 260 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom (11 kB at 280 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M2a/org.eclipse.sisu.inject-0.0.0.M2a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M2a/org.eclipse.sisu.inject-0.0.0.M2a.pom (5.0 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-inject/0.0.0.M2a/sisu-inject-0.0.0.M2a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-inject/0.0.0.M2a/sisu-inject-0.0.0.M2a.pom (7.8 kB at 205 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/asm/asm/3.3.1/asm-3.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 6.8 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 96 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom (3.9 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.1.0/maven-model-builder-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.1.0/maven-model-builder-3.1.0.pom (2.5 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.1.0/maven-aether-provider-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.1.0/maven-aether-provider-3.1.0.pom (3.5 kB at 88 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.pom (1.7 kB at 48 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom (28 kB at 697 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.pom (1.8 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom (2.0 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.pom (3.3 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.4.2/plexus-classworlds-2.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.4.2/plexus-classworlds-2.4.2.pom (3.5 kB at 97 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 414 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom (3.4 kB at 83 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom (14 kB at 349 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom (4.5 kB at 113 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-text/1.3/commons-text-1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 375 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/45/commons-parent-45.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 604 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 765 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 155 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 337 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom (6.0 kB at 163 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 66 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 259 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/16/maven-parent-16.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 597 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 36 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 268 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/10/maven-parent-10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 832 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom (1.6 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/2.2.1/maven-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/2.2.1/maven-2.2.1.pom (22 kB at 659 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/11/maven-parent-11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/11/maven-parent-11.pom (32 kB at 876 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/5/apache-5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/5/apache-5.pom (3.8 kB at 112 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 185 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom (3.2 kB at 98 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom (1.5 kB at 43 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 56 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 83 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.0 kB at 210 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 61 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom (7.7 kB at 220 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom (3.0 kB at 87 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom (2.0 kB at 51 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom (2.7 kB at 69 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom (2.0 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.1/commons-collections-3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 135 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 414 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom (357 B at 8.9 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/1.8/commons-digester-1.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 226 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.1/commons-logging-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 187 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/log4j/log4j/1.2.12/log4j-1.2.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 4.4 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/logkit/logkit/1.0.1/logkit-1.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 3.9 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 4.8 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-chain/commons-chain/1.1/commons-chain-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 167 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/1.6/commons-digester-1.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 25 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom (2.3 kB at 58 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.0/commons-logging-1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 3.6 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/2.0/commons-collections-2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/2.0/commons-collections-2.0.pom (171 B at 4.8 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/2.1/commons-collections-2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 93 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 52 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2/commons-collections-3.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 257 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/dom4j/dom4j/1.1/dom4j-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 3.9 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/oro/oro/2.0.8/oro-2.0.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 4.0 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 312 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.pom (5.3 kB at 137 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.pom (5.9 kB at 147 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-core/1.12.0/doxia-core-1.12.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-core/1.12.0/doxia-core-1.12.0.pom (4.4 kB at 110 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia/1.12.0/doxia-1.12.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia/1.12.0/doxia-1.12.0.pom (18 kB at 282 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.pom (1.5 kB at 19 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.pom (1.5 kB at 38 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 141 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 145 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/xbean/xbean/3.7/xbean-3.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 343 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 157 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 445 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (17 kB at 463 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/collections/google-collections/1.0/google-collections-1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 62 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/google/1/google-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/google/1/google-1.pom (1.6 kB at 47 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-chain/commons-chain/1.2/commons-chain-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-chain/commons-chain/1.2/commons-chain-1.2.pom (10 kB at 130 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/10/commons-parent-10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/10/commons-parent-10.pom (23 kB at 194 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/2.1/commons-digester-2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/2.1/commons-digester-2.1.pom (10 kB at 293 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.pom (11 kB at 303 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/14/commons-parent-14.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/14/commons-parent-14.pom (31 kB at 766 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.13.0/commons-io-2.13.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.13.0/commons-io-2.13.0.pom (20 kB at 616 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/58/commons-parent-58.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 1.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-resources/1.2.0/plexus-resources-1.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-resources/1.2.0/plexus-resources-1.2.0.pom (4.4 kB at 68 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/6.6/plexus-components-6.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/6.6/plexus-components-6.6.pom (2.4 kB at 58 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom (3.8 kB at 91 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom (14 kB at 444 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs/4.7.3/spotbugs-4.7.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/saxon/Saxon-HE/11.4/Saxon-HE-11.4.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/xmlresolver/xmlresolver/4.4.3/xmlresolver-4.4.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/client5/httpclient5/5.1.3/httpclient5-5.1.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/xmlresolver/xmlresolver/4.4.3/xmlresolver-4.4.3.jar (153 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5-h2/5.1.3/httpcore5-h2-5.1.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar (238 kB at 675 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5/5.1.3/httpcore5-5.1.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5-h2/5.1.3/httpcore5-h2-5.1.3.jar (232 kB at 641 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/client5/httpclient5/5.1.3/httpclient5-5.1.3.jar (798 kB at 1.8 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/xmlresolver/xmlresolver/4.4.3/xmlresolver-4.4.3-data.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs/4.7.3/spotbugs-4.7.3.jar (3.5 MB at 6.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/core5/httpcore5/5.1.3/httpcore5-5.1.3.jar (851 kB at 1.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar (221 kB at 404 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/saxon/Saxon-HE/11.4/Saxon-HE-11.4.jar (5.1 MB at 8.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar (21 kB at 36 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-simple/2.0.7/slf4j-simple-2.0.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/xmlresolver/xmlresolver/4.4.3/xmlresolver-4.4.3-data.jar (1.0 MB at 1.7 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-simple/2.0.7/slf4j-simple-2.0.7.jar (16 kB at 25 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar (64 kB at 99 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/bcel/bcel/6.6.1/bcel-6.6.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar (34 kB at 49 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar (318 kB at 440 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.12/groovy-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar (91 kB at 119 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-ant/4.0.12/groovy-ant-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar (1.9 MB at 2.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-groovydoc/4.0.12/groovy-groovydoc-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-ant/4.0.12/groovy-ant-4.0.12.jar (71 kB at 88 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-dateutil/4.0.12/groovy-dateutil-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-groovydoc/4.0.12/groovy-groovydoc-4.0.12.jar (144 kB at 175 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-docgenerator/4.0.12/groovy-docgenerator-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-dateutil/4.0.12/groovy-dateutil-4.0.12.jar (7.9 kB at 9.2 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-docgenerator/4.0.12/groovy-docgenerator-4.0.12.jar (114 kB at 129 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-json/4.0.12/groovy-json-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar (283 kB at 317 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-templates/4.0.12/groovy-templates-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/bcel/bcel/6.6.1/bcel-6.6.1.jar (695 kB at 768 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.12/groovy-xml-4.0.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/1.12.1/qdox-1.12.1.jar (180 kB at 198 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/javaparser/javaparser-core/3.25.3/javaparser-core-3.25.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-json/4.0.12/groovy-json-4.0.12.jar (130 kB at 139 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/32.0.1-jre/guava-32.0.1-jre.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.12/groovy-xml-4.0.12.jar (213 kB at 209 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-templates/4.0.12/groovy-templates-4.0.12.jar (92 kB at 89 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar (16 kB at 15 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.12/groovy-4.0.12.jar (7.6 MB at 7.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar (9.3 kB at 8.4 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.1.0/maven-core-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.jar (20 kB at 17 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.1.0/maven-settings-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/javaparser/javaparser-core/3.25.3/javaparser-core-3.25.3.jar (1.4 MB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.1.0/maven-settings-builder-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.1.0/maven-settings-3.1.0.jar (47 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.1.0/maven-repository-metadata-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.1.0/maven-settings-builder-3.1.0.jar (41 kB at 36 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.1.0/maven-model-builder-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar (224 kB at 189 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.1.0/maven-aether-provider-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.1.0/maven-repository-metadata-3.1.0.jar (30 kB at 25 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.1.0/maven-aether-provider-3.1.0.jar (60 kB at 49 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.1.0/maven-model-builder-3.1.0.jar (159 kB at 129 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.jar (18 kB at 14 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.1.0/maven-core-3.1.0.jar (563 kB at 442 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M2a/org.eclipse.sisu.plexus-0.0.0.M2a.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.jar (145 kB at 114 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.jar (134 kB at 105 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M2a/org.eclipse.sisu.inject-0.0.0.M2a.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar (134 kB at 102 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/asm/asm/3.3.1/asm-3.3.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/32.0.1-jre/guava-32.0.1-jre.jar (3.0 MB at 2.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.4.2/plexus-classworlds-2.4.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M2a/org.eclipse.sisu.plexus-0.0.0.M2a.jar (202 kB at 151 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.1.0/maven-artifact-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M2a/org.eclipse.sisu.inject-0.0.0.M2a.jar (202 kB at 150 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.1.0/maven-plugin-api-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/asm/asm/3.3.1/asm-3.3.1.jar (44 kB at 32 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.1.0/maven-artifact-3.1.0.jar (52 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.1.0/maven-plugin-api-3.1.0.jar (50 kB at 36 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-core/1.12.0/doxia-core-1.12.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.4.2/plexus-classworlds-2.4.2.jar (47 kB at 34 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar (11 kB at 7.6 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar (357 kB at 253 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.jar (12 kB at 8.2 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.jar (12 kB at 8.0 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.4.2/maven-shared-utils-3.4.2.jar (151 kB at 104 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar (60 kB at 41 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar (16 kB at 11 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar (65 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar (17 kB at 12 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar (18 kB at 12 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/oro/oro/2.0.8/oro-2.0.8.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 7.8 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-core/1.12.0/doxia-core-1.12.0.jar (219 kB at 143 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar (47 kB at 30 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-chain/commons-chain/1.2/commons-chain-1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar (88 kB at 55 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/2.1/commons-digester-2.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 41 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-chain/commons-chain/1.2/commons-chain-1.2.jar (92 kB at 56 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-resources/1.2.0/plexus-resources-1.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 201 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-digester/commons-digester/2.1/commons-digester-2.1.jar (197 kB at 119 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 210 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-resources/1.2.0/plexus-resources-1.2.0.jar (23 kB at 14 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar (484 kB at 274 kB/s)
[INFO]
[INFO] <<< spotbugs-maven-plugin:4.7.3.5:check (spotbugs) < :spotbugs @ HelloWorldNotifier <<<
[INFO]
[INFO]
[INFO] --- spotbugs-maven-plugin:4.7.3.5:check (spotbugs) @ HelloWorldNotifier ---
[INFO]
[INFO] --- spotless-maven-plugin:2.37.0:check (default) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib/2.39.0/spotless-lib-2.39.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib/2.39.0/spotless-lib-2.39.0.pom (1.5 kB at 14 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib-extra/2.39.0/spotless-lib-extra-2.39.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib-extra/2.39.0/spotless-lib-extra-2.39.0.pom (2.7 kB at 33 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-core/1.2.0/durian-core-1.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-core/1.2.0/durian-core-1.2.0.pom (2.0 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-collect/1.2.0/durian-collect-1.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-collect/1.2.0/durian-collect-1.2.0.pom (2.1 kB at 60 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jgit/org.eclipse.jgit/6.5.0.202303070854-r/org.eclipse.jgit-6.5.0.202303070854-r.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jgit/org.eclipse.jgit/6.5.0.202303070854-r/org.eclipse.jgit-6.5.0.202303070854-r.pom (7.6 kB at 168 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jgit/org.eclipse.jgit-parent/6.5.0.202303070854-r/org.eclipse.jgit-parent-6.5.0.202303070854-r.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jgit/org.eclipse.jgit-parent/6.5.0.202303070854-r/org.eclipse.jgit-parent-6.5.0.202303070854-r.pom (33 kB at 741 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/javaewah/JavaEWAH/1.1.13/JavaEWAH-1.1.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/javaewah/JavaEWAH/1.1.13/JavaEWAH-1.1.13.pom (5.0 kB at 130 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/concurrent-trees/concurrent-trees/2.6.1/concurrent-trees-2.6.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/concurrent-trees/concurrent-trees/2.6.1/concurrent-trees-2.6.1.pom (9.7 kB at 230 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/dev/equo/ide/solstice/1.3.1/solstice-1.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/dev/equo/ide/solstice/1.3.1/solstice-1.3.1.pom (2.6 kB at 71 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-swt.os/4.2.0/durian-swt.os-4.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-swt.os/4.2.0/durian-swt.os-4.2.0.pom (1.6 kB at 43 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/platform/org.eclipse.osgi/3.18.300/org.eclipse.osgi-3.18.300.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/platform/org.eclipse.osgi/3.18.300/org.eclipse.osgi-3.18.300.pom (1.3 kB at 35 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.pom (1.8 kB at 47 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.pom (1.9 kB at 49 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.pom (1.6 kB at 39 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib/1.5.31/kotlin-stdlib-1.5.31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib/1.5.31/kotlin-stdlib-1.5.31.pom (1.6 kB at 46 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/annotations/13.0/annotations-13.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/annotations/13.0/annotations-13.0.pom (4.9 kB at 126 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.pom (1.2 kB at 32 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.pom (1.4 kB at 38 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.pom (1.6 kB at 35 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-common/1.6.20/kotlin-stdlib-common-1.6.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-common/1.6.20/kotlin-stdlib-common-1.6.20.pom (1.2 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib/2.39.0/spotless-lib-2.39.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib-extra/2.39.0/spotless-lib-extra-2.39.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/concurrent-trees/concurrent-trees/2.6.1/concurrent-trees-2.6.1.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/dev/equo/ide/solstice/1.3.1/solstice-1.3.1.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-swt.os/4.2.0/durian-swt.os-4.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/concurrent-trees/concurrent-trees/2.6.1/concurrent-trees-2.6.1.jar (120 kB at 2.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/platform/org.eclipse.osgi/3.18.300/org.eclipse.osgi-3.18.300.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-swt.os/4.2.0/durian-swt.os-4.2.0.jar (13 kB at 117 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib-extra/2.39.0/spotless-lib-extra-2.39.0.jar (76 kB at 613 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/dev/equo/ide/solstice/1.3.1/solstice-1.3.1.jar (400 kB at 2.5 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-lib/2.39.0/spotless-lib-2.39.0.jar (448 kB at 2.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar (16 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar (23 kB at 120 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar (198 kB at 746 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/annotations/13.0/annotations-13.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar (351 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-core/1.2.0/durian-core-1.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/annotations/13.0/annotations-13.0.jar (18 kB at 58 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-collect/1.2.0/durian-collect-1.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar (783 kB at 2.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/platform/org.eclipse.osgi/3.18.300/org.eclipse.osgi-3.18.300.jar (1.5 MB at 4.8 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jgit/org.eclipse.jgit/6.5.0.202303070854-r/org.eclipse.jgit-6.5.0.202303070854-r.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar (1.5 MB at 4.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/javaewah/JavaEWAH/1.1.13/JavaEWAH-1.1.13.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar (42 kB at 104 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/googlecode/javaewah/JavaEWAH/1.1.13/JavaEWAH-1.1.13.jar (167 kB at 409 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-core/1.2.0/durian-core-1.2.0.jar (344 kB at 805 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/durian/durian-collect/1.2.0/durian-collect-1.2.0.jar (1.2 MB at 2.6 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jgit/org.eclipse.jgit/6.5.0.202303070854-r/org.eclipse.jgit-6.5.0.202303070854-r.jar (3.1 MB at 4.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format/2.28.0/palantir-java-format-2.28.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format/2.28.0/palantir-java-format-2.28.0.pom (8.1 kB at 69 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format-spi/2.28.0/palantir-java-format-spi-2.28.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format-spi/2.28.0/palantir-java-format-spi-2.28.0.pom (7.3 kB at 56 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.pom (5.9 kB at 141 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-parent/2.13/jackson-parent-2.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-parent/2.13/jackson-parent-2.13.pom (7.3 kB at 177 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/oss-parent/43/oss-parent-43.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/oss-parent/43/oss-parent-43.pom (24 kB at 611 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.pom (3.0 kB at 34 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatypes-collections/2.13.4/jackson-datatypes-collections-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatypes-collections/2.13.4/jackson-datatypes-collections-2.13.4.pom (2.9 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-base/2.13.4/jackson-base-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-base/2.13.4/jackson-base-2.13.4.pom (9.9 kB at 282 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-bom/2.13.4/jackson-bom-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-bom/2.13.4/jackson-bom-2.13.4.pom (17 kB at 447 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/21.0/guava-21.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/21.0/guava-21.0.pom (7.0 kB at 102 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/21.0/guava-parent-21.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/21.0/guava-parent-21.0.pom (9.7 kB at 76 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.pom (5.4 kB at 145 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.pom (16 kB at 227 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/functionaljava/functionaljava/4.8/functionaljava-4.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/functionaljava/functionaljava/4.8/functionaljava-4.8.pom (1.7 kB at 22 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-databind/2.13.4.2/jackson-databind-2.13.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-databind/2.13.4.2/jackson-databind-2.13.4.2.pom (17 kB at 437 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.pom (2.6 kB at 70 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/module/jackson-modules-java8/2.13.4/jackson-modules-java8-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/module/jackson-modules-java8/2.13.4/jackson-modules-java8-2.13.4.pom (3.0 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.pom (4.4 kB at 112 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format/2.28.0/palantir-java-format-2.28.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format-spi/2.28.0/palantir-java-format-spi-2.28.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar (76 kB at 1.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format-spi/2.28.0/palantir-java-format-spi-2.28.0.jar (7.4 kB at 92 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.jar (16 kB at 208 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/functionaljava/functionaljava/4.8/functionaljava-4.8.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar (209 kB at 1.9 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar (8.8 kB at 80 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-databind/2.13.4.2/jackson-databind-2.13.4.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.13.4/jackson-datatype-guava-2.13.4.jar (88 kB at 554 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/palantir/javaformat/palantir-java-format/2.28.0/palantir-java-format-2.28.0.jar (383 kB at 2.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.13.4/jackson-datatype-jdk8-2.13.4.jar (35 kB at 187 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/module/jackson-module-parameter-names/2.13.4/jackson-module-parameter-names-2.13.4.jar (9.5 kB at 43 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-databind/2.13.4.2/jackson-databind-2.13.4.2.jar (1.5 MB at 5.0 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/functionaljava/functionaljava/4.8/functionaljava-4.8.jar (1.9 MB at 6.0 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar (375 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/googlejavaformat/google-java-format/1.17.0/google-java-format-1.17.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/googlejavaformat/google-java-format/1.17.0/google-java-format-1.17.0.pom (10 kB at 250 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/googlejavaformat/google-java-format-parent/1.17.0/google-java-format-parent-1.17.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/googlejavaformat/google-java-format-parent/1.17.0/google-java-format-parent-1.17.0.pom (13 kB at 352 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/googlejavaformat/google-java-format/1.17.0/google-java-format-1.17.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/googlejavaformat/google-java-format/1.17.0/google-java-format-1.17.0.jar (271 kB at 1.9 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/ekryd/sortpom/sortpom-sorter/3.2.1/sortpom-sorter-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/ekryd/sortpom/sortpom-sorter/3.2.1/sortpom-sorter-3.2.1.pom (754 B at 24 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/ekryd/sortpom/sortpom-parent/3.2.1/sortpom-parent-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/ekryd/sortpom/sortpom-parent/3.2.1/sortpom-parent-3.2.1.pom (18 kB at 565 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/ekryd/sortpom/sortpom-sorter/3.2.1/sortpom-sorter-3.2.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/ekryd/sortpom/sortpom-sorter/3.2.1/sortpom-sorter-3.2.1.jar (87 kB at 2.0 MB/s)
[INFO] Index file does not exist. Fallback to an empty index
[INFO] Sorting file /tmp/pom14072822052621795526.xml
[INFO] Pom file is already sorted, exiting
[INFO] Spotless.Pom is keeping 1 files clean - 0 needs changes to be clean, 1 were already clean, 0 were skipped because caching determined they were already clean
[INFO]
[INFO] --- maven-install-plugin:3.1.1:install (default-install) @ HelloWorldNotifier ---
[INFO] Installing /root/hw/HelloWorldNotifier/target/HelloWorldNotifier-1.0-SNAPSHOT.pom to /root/.m2/repository/io/jenkins/plugins/HelloWorldNotifier/1.0-SNAPSHOT/HelloWorldNotifier-1.0-SNAPSHOT.pom
[INFO] Installing /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.hpi to /root/.m2/repository/io/jenkins/plugins/HelloWorldNotifier/1.0-SNAPSHOT/HelloWorldNotifier-1.0-SNAPSHOT.hpi
[INFO] Installing /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.jar to /root/.m2/repository/io/jenkins/plugins/HelloWorldNotifier/1.0-SNAPSHOT/HelloWorldNotifier-1.0-SNAPSHOT.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 45.718 s
[INFO] Finished at: 2023-08-25T01:39:35Z
[INFO] ------------------------------------------------------------------------
# curl https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.7/git-changelist-maven-extension-1.7.pom
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.jenkins.tools.incrementals</groupId>
<artifactId>parent</artifactId>
<version>1.7</version>
</parent>
<artifactId>git-changelist-maven-extension</artifactId>
<name>Git Changelist Maven Extension</name>
<description>Maven extension which can set the special changelist user property according to Git metadata.</description>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.sisu</groupId>
<artifactId>sisu-maven-plugin</artifactId>
<version>0.3.5</version>
<executions>
<execution>
<id>generate-index</id>
<goals>
<goal>main-index</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>6.6.0.202305301015-r</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
# curl http://fisheye.jboss.org/browse/Weld/api/tags/1.0/build/tags/weld-parent-6/weld-api-bom
curl: (6) Could not resolve host: fisheye.jboss.org
# curl https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom
<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.jboss.weld</groupId>
<artifactId>weld-api-bom</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<parent>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-parent</artifactId>
<version>6</version>
</parent>
<name>Weld and CDI APIs BOM</name>
<!-- Minimal project metadata, for more see parent/pom.xml -->
<url>http://www.seamframework.org/Weld</url>
<description>Weld and CDI APIs "bill of materials" which can be imported by any project using the Weld implementation of CDI. It provides dependency management for the developer APIs and SPIs, as well as container integrator SPIs</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<distribution>repo</distribution>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Weld committers</name>
</developer>
</developers>
<!-- Dependency management, including extra repositories if needed -->
<repositories>
<repository>
<id>repository.jboss.org</id>
<name>JBoss Release Repository</name>
<url>http://repository.jboss.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>snapshots.jboss.org</id>
<name>JBoss Snapshots Repository</name>
<url>http://snapshots.jboss.org/maven2</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>oss.sonatype.org/jboss-snapshots</id>
<name>JBoss (Nexus) Snapshots Repository</name>
<url>http://oss.sonatype.org/content/repositories/jboss-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<properties>
<atinject.api.version>1</atinject.api.version>
<ejb.api.version>3.1.0</ejb.api.version>
<jsr250.api.version>1.0</jsr250.api.version>
<jpa.api.version>1.0</jpa.api.version>
<validation.api.version>1.0.0.GA</validation.api.version>
<servlet.api.version>2.5</servlet.api.version>
<jsp.api.version>2.1</jsp.api.version>
<jstl.api.version>1.2</jstl.api.version>
<jta.api.version>1.0.1B</jta.api.version>
<jms.api.version>1.1</jms.api.version>
<uel.api.version>2.1.2-b04</uel.api.version>
<jsf.api.version>1.2_13</jsf.api.version>
<jaxws.api.version>2.1</jaxws.api.version>
<interceptor.api.version>1.1</interceptor.api.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>${jsr250.api.version}</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>${jpa.api.version}</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${validation.api.version}</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>${atinject.api.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet.api.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${jsp.api.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>${jstl.api.version}</version>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>${jta.api.version}</version>
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
<version>${jms.api.version}</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${uel.api.version}</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>${jsf.api.version}</version>
</dependency>
<!--
TODO replace with javax.ejb:ejb-api:3.1 once the JCP/Sun
publish this
-->
<dependency>
<groupId>org.jboss.ejb3</groupId>
<artifactId>jboss-ejb3-api</artifactId>
<version>${ejb.api.version}</version>
<exclusions>
<exclusion>
<artifactId>jboss-jaxrpc</artifactId>
<groupId>jbossws</groupId>
</exclusion>
<exclusion>
<artifactId>jboss-transaction-api</artifactId>
<groupId>org.jboss.javaee</groupId>
</exclusion>
<exclusion>
<artifactId>jboss-jaxrpc</artifactId>
<groupId>jboss.jbossws</groupId>
</exclusion>
</exclusions>
</dependency>
<!--
TODO replace with javax.interceptor:interceptor-api:3.1 once
the JCP/Sun publish this
-->
<dependency>
<groupId>org.jboss.interceptor</groupId>
<artifactId>jboss-interceptor-api</artifactId>
<version>${interceptor.api.version}</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>${jaxws.api.version}</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/weld/api/tags/1.0</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/weld/api/tags/1.0</developerConnection>
<url>http://fisheye.jboss.org/browse/Weld/api/tags/1.0/build/tags/weld-parent-6/weld-api-bom</url>
</scm>
</project>
# mvn package
Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.7/git-changelist-maven-extension-1.7.pom
Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.7/git-changelist-maven-extension-1.7.pom (2.0 kB at 4.3 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/parent/1.7/parent-1.7.pom
Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/parent/1.7/parent-1.7.pom (4.3 kB at 73 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/kohsuke/pom/21/pom-21.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/kohsuke/pom/21/pom-21.pom (6.1 kB at 109 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.8.1/maven-core-3.8.1.pom (8.8 kB at 252 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.8.1/maven-3.8.1.pom (26 kB at 420 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 (0 B at 0 B/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 (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.8.1/maven-model-3.8.1.pom (4.1 kB at 102 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 232 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.8.1/maven-settings-3.8.1.pom (1.9 kB at 40 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.8.1/maven-settings-builder-3.8.1.pom (2.5 kB at 94 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.pom (1.4 kB at 52 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 28 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 106 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 99 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 198 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 747 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.8.1/maven-repository-metadata-3.8.1.pom (1.9 kB at 75 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.8.1/maven-artifact-3.8.1.pom (2.4 kB at 52 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 (0 B at 0 B/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 (0 B at 0 B/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 (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.8.1/maven-plugin-api-3.8.1.pom (3.0 kB at 160 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 160 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 458 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 365 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 29 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 124 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 416 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 766 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 54 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 154 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 600 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 58 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 115 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 384 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 660 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 422 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 179 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 330 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.8.1/maven-model-builder-3.8.1.pom (3.4 kB at 212 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.8.1/maven-resolver-provider-3.8.1.pom (4.3 kB at 173 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.6.2/maven-resolver-api-1.6.2.pom (2.6 kB at 114 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.6.2/maven-resolver-1.6.2.pom (19 kB at 761 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.6.2/maven-resolver-spi-1.6.2.pom (2.7 kB at 133 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.pom (2.8 kB at 165 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.6.2/maven-resolver-impl-1.6.2.pom (4.2 kB at 49 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 295 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 920 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (3.8 kB at 183 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 kB at 531 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (0 B at 0 B/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 (0 B at 0 B/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 (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (0 B at 0 B/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 886 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 (0 B at 0 B/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 (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 456 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 597 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 154 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 13 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 410 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 424 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 159 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 241 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 234 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 112 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 300 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 69 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 134 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 399 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 1.3 MB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 344 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 47 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 178 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jgit/org.eclipse.jgit/6.6.0.202305301015-r/org.eclipse.jgit-6.6.0.202305301015-r.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jgit/org.eclipse.jgit/6.6.0.202305301015-r/org.eclipse.jgit-6.6.0.202305301015-r.pom (7.6 kB at 420 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jgit/org.eclipse.jgit-parent/6.6.0.202305301015-r/org.eclipse.jgit-parent-6.6.0.202305301015-r.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jgit/org.eclipse.jgit-parent/6.6.0.202305301015-r/org.eclipse.jgit-parent-6.6.0.202305301015-r.pom (34 kB at 684 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.pom
Downloaded from central: https://repo.maven.apache.org/maven2/com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.pom (6.2 kB at 199 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/5/oss-parent-5.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/5/oss-parent-5.pom (4.1 kB at 151 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 171 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 881 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.7/git-changelist-maven-extension-1.7.jar
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar
Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.7/git-changelist-maven-extension-1.7.jar (8.3 kB at 123 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 231 kB/s)
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 115 kB/s)
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.8.1/maven-builder-support-3.8.1.jar (14 kB at 138 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar
Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 577 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 39 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.6.2/maven-resolver-util-1.6.2.jar (169 kB at 1.1 MB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar
Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 269 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 23 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar (167 kB at 812 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 944 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 84 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 119 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 50 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 30 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 11 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.2 MB/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/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (0 B at 0 B/s)
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jgit/org.eclipse.jgit/6.6.0.202305301015-r/org.eclipse.jgit-6.6.0.202305301015-r.jar
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 12 kB/s)
Downloading from central: https://repo.maven.apache.org/maven2/com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.jar
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 1.4 MB/s)
Downloaded from central: https://repo.maven.apache.org/maven2/com/googlecode/javaewah/JavaEWAH/1.2.3/JavaEWAH-1.2.3.jar (171 kB at 421 kB/s)
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.jar (262 kB at 646 kB/s)
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 4.4 MB/s)
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jgit/org.eclipse.jgit/6.6.0.202305301015-r/org.eclipse.jgit-6.6.0.202305301015-r.jar (3.1 MB at 4.7 MB/s)
[INFO] Scanning for projects...
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/plugins/plugin/4.71/plugin-4.71.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/plugins/plugin/4.71/plugin-4.71.pom (58 kB at 338 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/tools/maven-hpi-plugin/3.47/maven-hpi-plugin-3.47.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/tools/maven-hpi-plugin/3.47/maven-hpi-plugin-3.47.pom (7.3 kB at 183 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.pom (3.5 kB at 82 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 137 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/codemodel/codemodel/2.6/codemodel-2.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/codemodel/codemodel/2.6/codemodel-2.6.pom (2.9 kB at 70 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/codemodel/codemodel-project/2.6/codemodel-project-2.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/codemodel/codemodel-project/2.6/codemodel-project-2.6.pom (7.1 kB at 152 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/jvnet-parent/1/jvnet-parent-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.5 kB at 107 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/lib/support-log-formatter/1.2/support-log-formatter-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/lib/support-log-formatter/1.2/support-log-formatter-1.2.pom (3.6 kB at 97 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/sezpoz/sezpoz/1.13/sezpoz-1.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/sezpoz/sezpoz/1.13/sezpoz-1.13.pom (3.4 kB at 85 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/sezpoz/pom/1.13/pom-1.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/sezpoz/pom/1.13/pom-1.13.pom (4.1 kB at 112 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.13/ant-1.10.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.13/ant-1.10.13.pom (17 kB at 413 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.10.13/ant-parent-1.10.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.10.13/ant-parent-1.10.13.pom (6.6 kB at 129 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.pom (3.2 kB at 81 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.pom (3.9 kB at 82 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom (4.9 kB at 129 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/36/maven-parent-36.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/36/maven-parent-36.pom (47 kB at 931 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/26/apache-26.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/26/apache-26.pom (20 kB at 455 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.pom (6.0 kB at 140 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/10/plexus-10.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 540 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom (8.2 kB at 183 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/8/plexus-8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/8/plexus-8.pom (25 kB at 621 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 459 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/52/commons-parent-52.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 1.8 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 113 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.pom (6.3 kB at 136 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 458 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.9/xz-1.9.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.9/xz-1.9.pom (2.0 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.pom (6.2 kB at 136 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/37/maven-shared-components-37.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/37/maven-shared-components-37.pom (4.9 kB at 100 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/37/maven-parent-37.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/37/maven-parent-37.pom (47 kB at 898 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/27/apache-27.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/27/apache-27.pom (20 kB at 441 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom (2.2 kB at 59 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom (30 kB at 773 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom (1.9 kB at 45 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom (6.0 kB at 144 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom (3.2 kB at 75 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/39/maven-parent-39.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/39/maven-parent-39.pom (49 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/29/apache-29.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/29/apache-29.pom (21 kB at 516 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom (3.2 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/spice/spice-parent/15/spice-parent-15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/spice/spice-parent/15/spice-parent-15.pom (8.4 kB at 226 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/5/forge-parent-5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 194 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 207 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 298 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom (8.8 kB at 237 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-maven-plugin/10.0.15/jetty-maven-plugin-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-maven-plugin/10.0.15/jetty-maven-plugin-10.0.15.pom (13 kB at 286 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-project/10.0.15/jetty-project-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-project/10.0.15/jetty-project-10.0.15.pom (101 kB at 2.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/infinispan/infinispan-bom/11.0.17.Final/infinispan-bom-11.0.17.Final.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/infinispan/infinispan-bom/11.0.17.Final/infinispan-bom-11.0.17.Final.pom (18 kB at 483 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/infinispan/infinispan-build-configuration-parent/11.0.17.Final/infinispan-build-configuration-parent-11.0.17.Final.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/infinispan/infinispan-build-configuration-parent/11.0.17.Final/infinispan-build-configuration-parent-11.0.17.Final.pom (16 kB at 409 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/jboss-parent/36/jboss-parent-36.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/jboss-parent/36/jboss-parent-36.pom (67 kB at 1.8 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-bom/2.14.1/jackson-bom-2.14.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-bom/2.14.1/jackson-bom-2.14.1.pom (18 kB at 390 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-parent/2.14/jackson-parent-2.14.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/jackson/jackson-parent/2.14/jackson-parent-2.14.pom (7.5 kB at 94 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/oss-parent/48/oss-parent-48.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/fasterxml/oss-parent/48/oss-parent-48.pom (24 kB at 632 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom (3.2 kB at 108 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/ow2/1.5.1/ow2-1.5.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 324 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/testcontainers/testcontainers-bom/1.17.6/testcontainers-bom-1.17.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/testcontainers/testcontainers-bom/1.17.6/testcontainers-bom-1.17.6.pom (8.3 kB at 253 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools-api/3.8.1/maven-plugin-tools-api-3.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools-api/3.8.1/maven-plugin-tools-api-3.8.1.pom (4.3 kB at 100 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools/3.8.1/maven-plugin-tools-3.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools/3.8.1/maven-plugin-tools-3.8.1.pom (18 kB at 475 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom (5.6 kB at 131 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom (8.1 kB at 244 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.2.5/maven-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.2.5/maven-3.2.5.pom (22 kB at 533 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/25/maven-parent-25.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/25/maven-parent-25.pom (38 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/15/apache-15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/15/apache-15.pom (15 kB at 479 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.pom (4.2 kB at 137 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom (3.8 kB at 119 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom (2.2 kB at 64 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom (2.6 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom (1.5 kB at 51 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom (2.8 kB at 95 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom (2.2 kB at 68 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom (2.3 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom (3.0 kB at 72 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.pom (4.7 kB at 157 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-plexus/0.3.0.M1/sisu-plexus-0.3.0.M1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-plexus/0.3.0.M1/sisu-plexus-0.3.0.M1.pom (13 kB at 414 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.pom (2.5 kB at 85 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-inject/0.3.0.M1/sisu-inject-0.3.0.M1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-inject/0.3.0.M1/sisu-inject-0.3.0.M1.pom (14 kB at 386 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom (5.0 kB at 128 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom (4.0 kB at 109 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/spice/spice-parent/16/spice-parent-16.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 226 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom (3.0 kB at 83 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom (4.2 kB at 121 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom (2.1 kB at 60 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom (3.5 kB at 79 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom (11 kB at 288 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom (13 kB at 306 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/38/forge-parent-38.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/forge/forge-parent/38/forge-parent-38.pom (19 kB at 416 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/16.0.1/guava-16.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 174 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 216 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 182 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 157 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 410 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 817 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 127 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 366 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 362 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/34/commons-parent-34.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 411 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.pom (5.0 kB at 118 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-core/4.4.15/httpcomponents-core-4.4.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcomponents-core/4.4.15/httpcomponents-core-4.4.15.pom (13 kB at 286 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/wagon/wagon-provider-api/2.4/wagon-provider-api-2.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/wagon/wagon-provider-api/2.4/wagon-provider-api-2.4.pom (1.7 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/wagon/wagon/2.4/wagon-2.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/wagon/wagon/2.4/wagon-2.4.pom (20 kB at 482 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 51 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 521 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.1/plexus-java-1.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.1/plexus-java-1.1.1.pom (5.0 kB at 121 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-languages/1.1.1/plexus-languages-1.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-languages/1.1.1/plexus-languages-1.1.1.pom (4.6 kB at 121 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.2/asm-9.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.2/asm-9.2.pom (2.4 kB at 74 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/ow2/1.5/ow2-1.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 288 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.1/qdox-2.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.1/qdox-2.0.1.pom (16 kB at 381 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-util/10.0.15/jetty-util-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-util/10.0.15/jetty-util-10.0.15.pom (3.7 kB at 92 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.5/slf4j-api-2.0.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.5/slf4j-api-2.0.5.pom (1.6 kB at 39 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.5/slf4j-parent-2.0.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.5/slf4j-parent-2.0.5.pom (16 kB at 477 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-webapp/10.0.15/jetty-webapp-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-webapp/10.0.15/jetty-webapp-10.0.15.pom (3.6 kB at 120 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-servlet/10.0.15/jetty-servlet-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-servlet/10.0.15/jetty-servlet-10.0.15.pom (2.3 kB at 60 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-security/10.0.15/jetty-security-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-security/10.0.15/jetty-security-10.0.15.pom (2.1 kB at 57 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-server/10.0.15/jetty-server-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-server/10.0.15/jetty-server-10.0.15.pom (2.6 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-servlet-api/4.0.6/jetty-servlet-api-4.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-servlet-api/4.0.6/jetty-servlet-api-4.0.6.pom (9.5 kB at 287 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-toolchain/1.7/jetty-toolchain-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-toolchain/1.7/jetty-toolchain-1.7.pom (17 kB at 537 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-http/10.0.15/jetty-http-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-http/10.0.15/jetty-http-10.0.15.pom (4.1 kB at 128 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-io/10.0.15/jetty-io-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-io/10.0.15/jetty-io-10.0.15.pom (1.8 kB at 43 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-xml/10.0.15/jetty-xml-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-xml/10.0.15/jetty-xml-10.0.15.pom (2.2 kB at 60 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-quickstart/10.0.15/jetty-quickstart-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-quickstart/10.0.15/jetty-quickstart-10.0.15.pom (2.1 kB at 56 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-plus/10.0.15/jetty-plus-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-plus/10.0.15/jetty-plus-10.0.15.pom (2.3 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.pom (13 kB at 395 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom (13 kB at 425 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jndi/10.0.15/jetty-jndi-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jndi/10.0.15/jetty-jndi-10.0.15.pom (2.6 kB at 85 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-annotations/10.0.15/jetty-annotations-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-annotations/10.0.15/jetty-annotations-10.0.15.pom (3.5 kB at 96 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.pom (16 kB at 400 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/ca-parent/1.3.5/ca-parent-1.3.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/ca-parent/1.3.5/ca-parent-1.3.5.pom (2.8 kB at 88 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.5/asm-9.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.5/asm-9.5.pom (2.4 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom (2.8 kB at 71 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom (2.6 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jaas/10.0.15/jetty-jaas-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jaas/10.0.15/jetty-jaas-10.0.15.pom (5.8 kB at 142 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-ldap-model/2.1.2/api-ldap-model-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-ldap-model/2.1.2/api-ldap-model-2.1.2.pom (9.1 kB at 207 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-ldap-parent/2.1.2/api-ldap-parent-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-ldap-parent/2.1.2/api-ldap-parent-2.1.2.pom (1.6 kB at 42 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-parent/2.1.2/api-parent-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-parent/2.1.2/api-parent-2.1.2.pom (28 kB at 705 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/project/project/46/project-46.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/project/project/46/project-46.pom (40 kB at 911 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-util/2.1.2/api-util-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-util/2.1.2/api-util-2.1.2.pom (4.0 kB at 106 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-i18n/2.1.2/api-i18n-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-i18n/2.1.2/api-i18n-2.1.2.pom (2.7 kB at 70 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-api/2.1.2/api-asn1-api-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-api/2.1.2/api-asn1-api-2.1.2.pom (3.0 kB at 70 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-parent/2.1.2/api-asn1-parent-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-parent/2.1.2/api-asn1-parent-2.1.2.pom (1.5 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-ber/2.1.2/api-asn1-ber-2.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-ber/2.1.2/api-asn1-ber-2.1.2.pom (3.9 kB at 95 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/mina/mina-core/2.2.1/mina-core-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/mina/mina-core/2.2.1/mina-core-2.2.1.pom (4.4 kB at 115 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/mina/mina-parent/2.2.1/mina-parent-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/mina/mina-parent/2.2.1/mina-parent-2.2.1.pom (32 kB at 732 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.pom (2.7 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/bundles/bundles-pom/6/bundles-pom-6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/bundles/bundles-pom/6/bundles-pom-6.pom (9.7 kB at 268 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/servicemix-pom/5/servicemix-pom-5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/servicemix-pom/5/servicemix-pom-5.pom (9.3 kB at 267 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 807 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom (24 kB at 680 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 441 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-client/10.0.15/jetty-client-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-client/10.0.15/jetty-client-10.0.15.pom (5.6 kB at 140 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-alpn-client/10.0.15/jetty-alpn-client-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-alpn-client/10.0.15/jetty-alpn-client-10.0.15.pom (2.2 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-alpn-parent/10.0.15/jetty-alpn-parent-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-alpn-parent/10.0.15/jetty-alpn-parent-10.0.15.pom (792 B at 21 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jmx/10.0.15/jetty-jmx-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jmx/10.0.15/jetty-jmx-10.0.15.pom (1.8 kB at 56 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-server/10.0.15/websocket-javax-server-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-server/10.0.15/websocket-javax-server-10.0.15.pom (3.0 kB at 94 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-parent/10.0.15/websocket-parent-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-parent/10.0.15/websocket-parent-10.0.15.pom (1.9 kB at 48 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-client/10.0.15/websocket-javax-client-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-client/10.0.15/websocket-javax-client-10.0.15.pom (2.9 kB at 79 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-javax-websocket-api/1.1.2/jetty-javax-websocket-api-1.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-javax-websocket-api/1.1.2/jetty-javax-websocket-api-1.1.2.pom (8.8 kB at 267 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-common/10.0.15/websocket-javax-common-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-common/10.0.15/websocket-javax-common-10.0.15.pom (1.9 kB at 52 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-client/10.0.15/websocket-core-client-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-client/10.0.15/websocket-core-client-10.0.15.pom (1.5 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-common/10.0.15/websocket-core-common-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-common/10.0.15/websocket-core-common-10.0.15.pom (1.9 kB at 46 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-servlet/10.0.15/websocket-servlet-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-servlet/10.0.15/websocket-servlet-10.0.15.pom (1.4 kB at 34 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-server/10.0.15/websocket-core-server-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-server/10.0.15/websocket-core-server-10.0.15.pom (954 B at 20 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-server/10.0.15/websocket-jetty-server-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-server/10.0.15/websocket-jetty-server-10.0.15.pom (2.7 kB at 83 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-api/10.0.15/websocket-jetty-api-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-api/10.0.15/websocket-jetty-api-10.0.15.pom (665 B at 21 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-common/10.0.15/websocket-jetty-common-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-common/10.0.15/websocket-jetty-common-10.0.15.pom (1.8 kB at 52 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jsp/10.0.15/apache-jsp-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jsp/10.0.15/apache-jsp-10.0.15.pom (3.5 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-jsp/9.0.52/apache-jsp-9.0.52.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-jsp/9.0.52/apache-jsp-9.0.52.pom (17 kB at 413 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/jasper-jsp/9.0.52/jasper-jsp-9.0.52.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/jasper-jsp/9.0.52/jasper-jsp-9.0.52.pom (8.1 kB at 207 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-schemas/4.0.3/jetty-schemas-4.0.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-schemas/4.0.3/jetty-schemas-4.0.3.pom (5.0 kB at 123 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-toolchain/1.6/jetty-toolchain-1.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-toolchain/1.6/jetty-toolchain-1.6.pom (17 kB at 387 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-el/9.0.52/apache-el-9.0.52.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-el/9.0.52/apache-el-9.0.52.pom (7.8 kB at 182 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jdt/ecj/3.26.0/ecj-3.26.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jdt/ecj/3.26.0/ecj-3.26.0.pom (1.7 kB at 42 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jstl/10.0.15/apache-jstl-10.0.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jstl/10.0.15/apache-jstl-10.0.15.pom (2.1 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.pom (5.3 kB at 142 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard/1.2.5/taglibs-standard-1.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard/1.2.5/taglibs-standard-1.2.5.pom (4.3 kB at 104 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-parent/3/taglibs-parent-3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-parent/3/taglibs-parent-3.pom (7.6 kB at 190 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.pom (6.9 kB at 191 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/version-number/1.11/version-number-1.11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/version-number/1.11/version-number-1.11.pom (3.5 kB at 111 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1785.vf9cb_74a_b_ec5b_/stapler-groovy-1785.vf9cb_74a_b_ec5b_.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1785.vf9cb_74a_b_ec5b_/stapler-groovy-1785.vf9cb_74a_b_ec5b_.pom (3.8 kB at 118 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1785.vf9cb_74a_b_ec5b_/stapler-jelly-1785.vf9cb_74a_b_ec5b_.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1785.vf9cb_74a_b_ec5b_/stapler-jelly-1785.vf9cb_74a_b_ec5b_.pom (4.2 kB at 127 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1785.vf9cb_74a_b_ec5b_/stapler-1785.vf9cb_74a_b_ec5b_.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1785.vf9cb_74a_b_ec5b_/stapler-1785.vf9cb_74a_b_ec5b_.pom (6.1 kB at 191 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/jcraft/jzlib/1.1.3-kohsuke-1/jzlib-1.1.3-kohsuke-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/jcraft/jzlib/1.1.3-kohsuke-1/jzlib-1.1.3-kohsuke-1.pom (1.7 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 474 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-discovery/commons-discovery/0.5/commons-discovery-0.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-discovery/commons-discovery/0.5/commons-discovery-0.5.pom (8.1 kB at 204 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/20/commons-parent-20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/20/commons-parent-20.pom (33 kB at 795 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/9/apache-9.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/apache/9/apache-9.pom (15 kB at 424 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom (18 kB at 557 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/5/commons-parent-5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/5/commons-parent-5.pom (16 kB at 401 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom (16 kB at 396 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/56/commons-parent-56.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/56/commons-parent-56.pom (82 kB at 1.5 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom (14 kB at 322 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/jvnet-parent/3/jvnet-parent-3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.5 kB at 141 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/tiger-types/2.2/tiger-types-2.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/tiger-types/2.2/tiger-types-2.2.pom (2.9 kB at 92 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer/1.31/localizer-1.31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer/1.31/localizer-1.31.pom (693 B at 19 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer-parent/1.31/localizer-parent-1.31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer-parent/1.31/localizer-parent-1.31.pom (4.7 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/20/pom-20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/20/pom-20.pom (6.1 kB at 160 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/json-lib/2.4-jenkins-3/json-lib-2.4-jenkins-3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/json-lib/2.4-jenkins-3/json-lib-2.4-jenkins-3.pom (13 kB at 381 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.8.0/commons-beanutils-1.8.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.8.0/commons-beanutils-1.8.0.pom (11 kB at 263 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/11/commons-parent-11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 725 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 338 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.5/commons-lang-2.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.5/commons-lang-2.5.pom (17 kB at 204 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/12/commons-parent-12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/12/commons-parent-12.pom (27 kB at 816 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.pom (6.8 kB at 218 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.3/commons-lang-2.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.3/commons-lang-2.3.pom (11 kB at 309 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.4/dom4j-2.1.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.4/dom4j-2.1.4.pom (2.7 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20230124/commons-jelly-1.1-jenkins-20230124.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20230124/commons-jelly-1.1-jenkins-20230124.pom (5.9 kB at 179 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jexl/1.1-jenkins-20111212/commons-jexl-1.1-jenkins-20111212.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jexl/1.1-jenkins-20111212/commons-jexl-1.1-jenkins-20111212.pom (3.7 kB at 104 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 25 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.pom (22 kB at 598 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/twdata/maven/mojo-executor/2.4.0/mojo-executor-2.4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/twdata/maven/mojo-executor/2.4.0/mojo-executor-2.4.0.pom (3.1 kB at 85 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/twdata/maven/mojo-executor-parent/2.4.0/mojo-executor-parent-2.4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/twdata/maven/mojo-executor-parent/2.4.0/mojo-executor-parent-2.4.0.pom (11 kB at 246 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.3.1/maven-3.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.3.1/maven-3.3.1.pom (23 kB at 632 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/26/maven-parent-26.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-parent/26/maven-parent-26.pom (41 kB at 1.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 142 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/tools/maven-hpi-plugin/3.47/maven-hpi-plugin-3.47.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/codemodel/codemodel/2.6/codemodel-2.6.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/lib/support-log-formatter/1.2/support-log-formatter-1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/inject/javax.inject/1/javax.inject-1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 39 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/sezpoz/sezpoz/1.13/sezpoz-1.13.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/github/spotbugs/spotbugs-annotations/4.7.3/spotbugs-annotations-4.7.3.jar (15 kB at 165 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.13/ant-1.10.13.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/tools/maven-hpi-plugin/3.47/maven-hpi-plugin-3.47.jar (162 kB at 1.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/sezpoz/sezpoz/1.13/sezpoz-1.13.jar (28 kB at 332 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/lib/support-log-formatter/1.2/support-log-formatter-1.2.jar (6.8 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.13/ant-launcher-1.10.13.jar (21 kB at 161 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/codemodel/codemodel/2.6/codemodel-2.6.jar (152 kB at 983 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.jar (79 kB at 601 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.9/xz-1.9.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.jar (26 kB at 197 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/tukaani/xz/1.9/xz-1.9.jar (116 kB at 645 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.jar (43 kB at 235 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar (136 kB at 600 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar (146 kB at 634 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar (55 kB at 208 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar (41 kB at 155 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (8.5 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.jar (211 kB at 643 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-maven-plugin/10.0.15/jetty-maven-plugin-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-maven-plugin/10.0.15/jetty-maven-plugin-10.0.15.jar (141 kB at 366 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools-api/3.8.1/maven-plugin-tools-api-3.8.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 2.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools-api/3.8.1/maven-plugin-tools-api-3.8.1.jar (54 kB at 126 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar (269 kB at 583 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.jar (43 kB at 92 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar (327 kB at 692 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.jar (608 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.jar (26 kB at 51 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.jar (44 kB at 83 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.jar (170 kB at 321 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.jar (66 kB at 122 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.jar (31 kB at 57 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3-no_aop.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.13/ant-1.10.13.jar (2.3 MB at 4.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/16.0.1/guava-16.0.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.jar (172 kB at 298 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.jar (201 kB at 347 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar (53 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 6.9 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar (29 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.jar (161 kB at 240 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.jar (46 kB at 68 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3-no_aop.jar (398 kB at 580 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.jar (340 kB at 494 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.jar (55 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-logging/commons-logging/1.2/commons-logging-1.2.jar (62 kB at 85 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/wagon/wagon-provider-api/2.4/wagon-provider-api-2.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/16.0.1/guava-16.0.1.jar (2.2 MB at 3.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.1/plexus-java-1.1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/wagon/wagon-provider-api/2.4/wagon-provider-api-2.4.jar (52 kB at 69 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.1/qdox-2.0.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.1/plexus-java-1.1.1.jar (54 kB at 70 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-util/10.0.15/jetty-util-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 979 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-webapp/10.0.15/jetty-webapp-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 410 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-xml/10.0.15/jetty-xml-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar (328 kB at 399 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-quickstart/10.0.15/jetty-quickstart-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-webapp/10.0.15/jetty-webapp-10.0.15.jar (159 kB at 189 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jaas/10.0.15/jetty-jaas-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-quickstart/10.0.15/jetty-quickstart-10.0.15.jar (51 kB at 60 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-security/10.0.15/jetty-security-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-xml/10.0.15/jetty-xml-10.0.15.jar (72 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-ldap-model/2.1.2/api-ldap-model-2.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jaas/10.0.15/jetty-jaas-10.0.15.jar (49 kB at 56 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-ber/2.1.2/api-asn1-ber-2.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-security/10.0.15/jetty-security-10.0.15.jar (121 kB at 136 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-i18n/2.1.2/api-i18n-2.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-util/10.0.15/jetty-util-10.0.15.jar (571 kB at 637 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/mina/mina-core/2.2.1/mina-core-2.2.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-ber/2.1.2/api-asn1-ber-2.1.2.jar (43 kB at 47 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-i18n/2.1.2/api-i18n-2.1.2.jar (87 kB at 94 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.1/qdox-2.0.1.jar (334 kB at 359 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-ldap-model/2.1.2/api-ldap-model-2.1.2.jar (1.1 MB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-util/2.1.2/api-util-2.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-util/2.1.2/api-util-2.1.2.jar (86 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-api/2.1.2/api-asn1-api-2.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/directory/api/api-asn1-api/2.1.2/api-asn1-api-2.1.2.jar (24 kB at 23 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-plus/10.0.15/jetty-plus-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/mina/mina-core/2.2.1/mina-core-2.2.1.jar (677 kB at 641 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jndi/10.0.15/jetty-jndi-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 554 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-server/10.0.15/jetty-server-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/servicemix/bundles/org.apache.servicemix.bundles.antlr/2.7.7_5/org.apache.servicemix.bundles.antlr-2.7.7_5.jar (454 kB at 427 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-servlet-api/4.0.6/jetty-servlet-api-4.0.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar (752 kB at 702 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-servlet/10.0.15/jetty-servlet-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-plus/10.0.15/jetty-plus-10.0.15.jar (69 kB at 64 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-client/10.0.15/jetty-client-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jndi/10.0.15/jetty-jndi-10.0.15.jar (48 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-alpn-client/10.0.15/jetty-alpn-client-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-servlet/10.0.15/jetty-servlet-10.0.15.jar (166 kB at 149 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-http/10.0.15/jetty-http-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-alpn-client/10.0.15/jetty-alpn-client-10.0.15.jar (17 kB at 15 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-io/10.0.15/jetty-io-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-servlet-api/4.0.6/jetty-servlet-api-4.0.6.jar (273 kB at 233 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jmx/10.0.15/jetty-jmx-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-client/10.0.15/jetty-client-10.0.15.jar (393 kB at 335 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-annotations/10.0.15/jetty-annotations-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-server/10.0.15/jetty-server-10.0.15.jar (797 kB at 668 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-http/10.0.15/jetty-http-10.0.15.jar (263 kB at 218 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.5/asm-9.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-jmx/10.0.15/jetty-jmx-10.0.15.jar (42 kB at 34 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-annotations/10.0.15/jetty-annotations-10.0.15.jar (95 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar (25 kB at 20 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-server/10.0.15/websocket-javax-server-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar (72 kB at 58 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-client/10.0.15/websocket-javax-client-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/jetty-io/10.0.15/jetty-io-10.0.15.jar (217 kB at 174 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-common/10.0.15/websocket-javax-common-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar (52 kB at 42 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-client/10.0.15/websocket-core-client-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.5/asm-9.5.jar (122 kB at 97 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-servlet/10.0.15/websocket-servlet-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-server/10.0.15/websocket-javax-server-10.0.15.jar (47 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-server/10.0.15/websocket-core-server-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-client/10.0.15/websocket-javax-client-10.0.15.jar (31 kB at 25 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-javax-websocket-api/1.1.2/jetty-javax-websocket-api-1.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-client/10.0.15/websocket-core-client-10.0.15.jar (33 kB at 26 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-server/10.0.15/websocket-jetty-server-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-servlet/10.0.15/websocket-servlet-10.0.15.jar (18 kB at 14 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-api/10.0.15/websocket-jetty-api-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-javax-common/10.0.15/websocket-javax-common-10.0.15.jar (121 kB at 93 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-common/10.0.15/websocket-jetty-common-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-javax-websocket-api/1.1.2/jetty-javax-websocket-api-1.1.2.jar (48 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-common/10.0.15/websocket-core-common-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-server/10.0.15/websocket-core-server-10.0.15.jar (65 kB at 49 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jsp/10.0.15/apache-jsp-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-server/10.0.15/websocket-jetty-server-10.0.15.jar (37 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-jsp/9.0.52/apache-jsp-9.0.52.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-api/10.0.15/websocket-jetty-api-10.0.15.jar (41 kB at 31 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-schemas/4.0.3/jetty-schemas-4.0.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-jetty-common/10.0.15/websocket-jetty-common-10.0.15.jar (45 kB at 33 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-el/9.0.52/apache-el-9.0.52.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jsp/10.0.15/apache-jsp-10.0.15.jar (21 kB at 16 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jdt/ecj/3.26.0/ecj-3.26.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/websocket/websocket-core-common/10.0.15/websocket-core-common-10.0.15.jar (195 kB at 143 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jstl/10.0.15/apache-jstl-10.0.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/apache-jstl/10.0.15/apache-jstl-10.0.15.jar (12 kB at 8.7 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jetty/toolchain/jetty-schemas/4.0.3/jetty-schemas-4.0.3.jar (228 kB at 160 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-el/9.0.52/apache-el-9.0.52.jar (253 kB at 177 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-spec/1.2.5/taglibs-standard-spec-1.2.5.jar (40 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/version-number/1.11/version-number-1.11.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mortbay/jasper/apache-jsp/9.0.52/apache-jsp-9.0.52.jar (1.0 MB at 703 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1785.vf9cb_74a_b_ec5b_/stapler-groovy-1785.vf9cb_74a_b_ec5b_.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.jar (15 kB at 11 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1785.vf9cb_74a_b_ec5b_/stapler-jelly-1785.vf9cb_74a_b_ec5b_.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/version-number/1.11/version-number-1.11.jar (15 kB at 10 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1785.vf9cb_74a_b_ec5b_/stapler-1785.vf9cb_74a_b_ec5b_.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1785.vf9cb_74a_b_ec5b_/stapler-groovy-1785.vf9cb_74a_b_ec5b_.jar (36 kB at 24 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/jcraft/jzlib/1.1.3-kohsuke-1/jzlib-1.1.3-kohsuke-1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1785.vf9cb_74a_b_ec5b_/stapler-jelly-1785.vf9cb_74a_b_ec5b_.jar (93 kB at 62 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/taglibs/taglibs-standard-impl/1.2.5/taglibs-standard-impl-1.2.5.jar (206 kB at 137 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-discovery/commons-discovery/0.5/commons-discovery-0.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/jcraft/jzlib/1.1.3-kohsuke-1/jzlib-1.1.3-kohsuke-1.jar (72 kB at 47 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/jdt/ecj/3.26.0/ecj-3.26.0.jar (3.1 MB at 2.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-discovery/commons-discovery/0.5/commons-discovery-0.5.jar (80 kB at 52 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/tiger-types/2.2/tiger-types-2.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.jar (74 kB at 48 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer/1.31/localizer-1.31.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/tiger-types/2.2/tiger-types-2.2.jar (18 kB at 11 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/json-lib/2.4-jenkins-3/json-lib-2.4-jenkins-3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar (27 kB at 17 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.5/commons-lang-2.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 156 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer/1.31/localizer-1.31.jar (9.2 kB at 5.8 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.4/dom4j-2.1.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1785.vf9cb_74a_b_ec5b_/stapler-1785.vf9cb_74a_b_ec5b_.jar (435 kB at 273 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20230124/commons-jelly-1.1-jenkins-20230124.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/json-lib/2.4-jenkins-3/json-lib-2.4-jenkins-3.jar (141 kB at 88 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jexl/1.1-jenkins-20111212/commons-jexl-1.1-jenkins-20111212.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.jar (86 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20230124/commons-jelly-1.1-jenkins-20230124.jar (185 kB at 112 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/twdata/maven/mojo-executor/2.4.0/mojo-executor-2.4.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jexl/1.1-jenkins-20111212/commons-jexl-1.1-jenkins-20111212.jar (141 kB at 86 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.5/commons-lang-2.5.jar (279 kB at 166 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/twdata/maven/mojo-executor/2.4.0/mojo-executor-2.4.0.jar (13 kB at 7.8 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.4/dom4j-2.1.4.jar (325 kB at 193 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/groovy/groovy-all/2.4.21/groovy-all-2.4.21.jar (7.2 MB at 4.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-2.387.x/2278.v47b_4508e256a/bom-2.387.x-2278.v47b_4508e256a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-2.387.x/2278.v47b_4508e256a/bom-2.387.x-2278.v47b_4508e256a.pom (6.9 kB at 104 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-2.401.x/2278.v47b_4508e256a/bom-2.401.x-2278.v47b_4508e256a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-2.401.x/2278.v47b_4508e256a/bom-2.401.x-2278.v47b_4508e256a.pom (6.9 kB at 103 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-2.414.x/2278.v47b_4508e256a/bom-2.414.x-2278.v47b_4508e256a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-2.414.x/2278.v47b_4508e256a/bom-2.414.x-2278.v47b_4508e256a.pom (6.9 kB at 115 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-weekly/2278.v47b_4508e256a/bom-weekly-2278.v47b_4508e256a.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/bom/bom-weekly/2278.v47b_4508e256a/bom-weekly-2278.v47b_4508e256a.pom (41 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-bom/2.387.3/jenkins-bom-2.387.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-bom/2.387.3/jenkins-bom-2.387.3.pom (20 kB at 562 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-bom/5.1.0/guice-bom-5.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-bom/5.1.0/guice-bom-5.1.0.pom (3.5 kB at 113 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-parent/5.1.0/guice-parent-5.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-parent/5.1.0/guice-parent-5.1.0.pom (18 kB at 592 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-framework-bom/5.3.24/spring-framework-bom-5.3.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-framework-bom/5.3.24/spring-framework-bom-5.3.24.pom (5.7 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-bom/5.8.1/spring-security-bom-5.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-bom/5.8.1/spring-security-bom-5.8.1.pom (5.7 kB at 93 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 188 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mockito/mockito-bom/5.4.0/mockito-bom-5.4.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/mockito/mockito-bom/5.4.0/mockito-bom-5.4.0.pom (3.0 kB at 96 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-bom/2.361/jenkins-bom-2.361.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-bom/2.361/jenkins-bom-2.361.pom (23 kB at 677 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-bom/5.0.1/guice-bom-5.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-bom/5.0.1/guice-bom-5.0.1.pom (3.5 kB at 117 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-parent/5.0.1/guice-parent-5.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice-parent/5.0.1/guice-parent-5.0.1.pom (19 kB at 603 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-framework-bom/5.3.22/spring-framework-bom-5.3.22.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-framework-bom/5.3.22/spring-framework-bom-5.3.22.pom (5.7 kB at 145 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-bom/5.7.2/spring-security-bom-5.7.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-bom/5.7.2/spring-security-bom-5.7.2.pom (5.7 kB at 178 kB/s)
[INFO]
[INFO] ---------------< io.jenkins.plugins:HelloWorldNotifier >----------------
[INFO] Building TODO Plugin 1.0-SNAPSHOT
[INFO] --------------------------------[ hpi ]---------------------------------
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.pom (6.8 kB at 225 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/37/maven-plugins-37.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/37/maven-plugins-37.pom (9.9 kB at 261 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.jar (27 kB at 854 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-maven-plugin/2.37.0/spotless-maven-plugin-2.37.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-maven-plugin/2.37.0/spotless-maven-plugin-2.37.0.pom (3.1 kB at 98 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-maven-plugin/2.37.0/spotless-maven-plugin-2.37.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/diffplug/spotless/spotless-maven-plugin/2.37.0/spotless-maven-plugin-2.37.0.jar (117 kB at 3.5 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer-maven-plugin/1.31/localizer-maven-plugin-1.31.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer-maven-plugin/1.31/localizer-maven-plugin-1.31.pom (4.2 kB at 121 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer-maven-plugin/1.31/localizer-maven-plugin-1.31.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/localizer/localizer-maven-plugin/1.31/localizer-maven-plugin-1.31.jar (24 kB at 760 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.pom (7.0 kB at 225 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer/3.3.0/enforcer-3.3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer/3.3.0/enforcer-3.3.0.pom (8.2 kB at 242 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.jar (39 kB at 1.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom (8.2 kB at 240 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 188 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar (31 kB at 860 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/flatten-maven-plugin/1.5.0/flatten-maven-plugin-1.5.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/flatten-maven-plugin/1.5.0/flatten-maven-plugin-1.5.0.pom (11 kB at 284 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/mojo-parent/74/mojo-parent-74.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/mojo-parent/74/mojo-parent-74.pom (36 kB at 938 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/flatten-maven-plugin/1.5.0/flatten-maven-plugin-1.5.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/flatten-maven-plugin/1.5.0/flatten-maven-plugin-1.5.0.jar (120 kB at 2.8 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.7 kB at 250 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 1.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-checker/1.32/access-modifier-checker-1.32.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-checker/1.32/access-modifier-checker-1.32.pom (4.7 kB at 141 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-checker/1.32/access-modifier-checker-1.32.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-checker/1.32/access-modifier-checker-1.32.jar (37 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom (9.1 kB at 212 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom (11 kB at 314 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar (41 kB at 981 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.pom (5.5 kB at 151 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire/3.1.2/surefire-3.1.2.pom (22 kB at 566 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugins/maven-surefire-plugin/3.1.2/maven-surefire-plugin-3.1.2.jar (43 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/maven/license-maven-plugin/104.v2171757ee6dd/license-maven-plugin-104.v2171757ee6dd.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/maven/license-maven-plugin/104.v2171757ee6dd/license-maven-plugin-104.v2171757ee6dd.pom (3.9 kB at 109 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/maven/license-maven-plugin/104.v2171757ee6dd/license-maven-plugin-104.v2171757ee6dd.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/maven/license-maven-plugin/104.v2171757ee6dd/license-maven-plugin-104.v2171757ee6dd.jar (24 kB at 765 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-core/2.387.3/jenkins-core-2.387.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-core/2.387.3/jenkins-core-2.387.3.pom (21 kB at 258 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/cli/2.387.3/cli-2.387.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/cli/2.387.3/cli-2.387.3.pom (5.5 kB at 125 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/3107.v665000b_51092/remoting-3107.v665000b_51092.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/3107.v665000b_51092/remoting-3107.v665000b_51092.pom (5.9 kB at 134 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/args4j/args4j/2.33/args4j-2.33.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/args4j/args4j/2.33/args4j-2.33.pom (1.3 kB at 33 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/args4j/args4j-site/2.33/args4j-site-2.33.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/args4j/args4j-site/2.33/args4j-site-2.33.pom (4.4 kB at 127 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/14/pom-14.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/14/pom-14.pom (5.5 kB at 166 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom (11 kB at 275 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom (15 kB at 433 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom (2.4 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 339 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 76 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.pom (4.3 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice/5.1.0/guice-5.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice/5.1.0/guice-5.1.0.pom (8.9 kB at 253 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.pom (2.1 kB at 55 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom (2.2 kB at 57 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom (11 kB at 275 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom (2.8 kB at 75 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/infradna/tool/bridge-method-annotation/1.25/bridge-method-annotation-1.25.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/infradna/tool/bridge-method-annotation/1.25/bridge-method-annotation-1.25.pom (3.7 kB at 103 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.17/annotation-indexer-1.17.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.17/annotation-indexer-1.17.pom (3.3 kB at 108 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/solaris/embedded_su4j/1.1/embedded_su4j-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/solaris/embedded_su4j/1.1/embedded_su4j-1.1.pom (2.2 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/xml/txw2/txw2/20110809/txw2-20110809.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/xml/txw2/txw2/20110809/txw2-20110809.pom (3.0 kB at 91 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/xml/txw2/txw2-project/20110809/txw2-project-20110809.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/xml/txw2/txw2-project/20110809/txw2-project-20110809.pom (4.9 kB at 144 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.pom (167 B at 4.5 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/xstream/xstream/1.4.20/xstream-1.4.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/xstream/xstream/1.4.20/xstream-1.4.20.pom (25 kB at 654 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/xstream/xstream-parent/1.4.20/xstream-parent-1.4.20.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/xstream/xstream-parent/1.4.20/xstream-parent-1.4.20.pom (44 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.pom (24 kB at 795 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-fmt/1.0/commons-jelly-tags-fmt-1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-fmt/1.0/commons-jelly-tags-fmt-1.0.pom (167 B at 5.6 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-xml/1.1/commons-jelly-tags-xml-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-xml/1.1/commons-jelly-tags-xml-1.1.pom (11 kB at 336 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen/2.0.0/jaxen-2.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen/2.0.0/jaxen-2.0.0.pom (1.7 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen-parent/2.0.0/jaxen-parent-2.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen-parent/2.0.0/jaxen-parent-2.0.0.pom (15 kB at 464 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xerces/xerces/2.2.1/xerces-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xerces/xerces/2.2.1/xerces-2.2.1.pom (322 B at 8.9 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xerces/xercesImpl/2.2.1/xercesImpl-2.2.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xerces/xercesImpl/2.2.1/xercesImpl-2.2.1.pom (150 B at 3.8 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 515 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/17/commons-parent-17.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 800 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/stapler/jenkins-stapler-support/1.1/jenkins-stapler-support-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/stapler/jenkins-stapler-support/1.1/jenkins-stapler-support-1.1.pom (1.5 kB at 41 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/jenkins/1.49/jenkins-1.49.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/jenkins/1.49/jenkins-1.49.pom (39 kB at 1.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/1.2.7/jakarta.servlet.jsp.jstl-api-1.2.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/1.2.7/jakarta.servlet.jsp.jstl-api-1.2.7.pom (13 kB at 352 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 341 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jline/jline/2.14.6/jline-2.14.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jline/jline/2.14.6/jline-2.14.6.pom (20 kB at 568 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/dev/jna/jna/5.12.1/jna-5.12.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/dev/jna/jna/5.12.1/jna-5.12.1.pom (2.0 kB at 56 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.pom (491 B at 18 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom (1.5 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.pom (3.6 kB at 91 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/antlr/antlr4-master/4.11.1/antlr4-master-4.11.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/antlr/antlr4-master/4.11.1/antlr4-master-4.11.1.pom (4.4 kB at 116 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.12/ant-1.10.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.12/ant-1.10.12.pom (17 kB at 570 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.10.12/ant-parent-1.10.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.10.12/ant-parent-1.10.12.pom (6.5 kB at 181 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.pom (3.2 kB at 81 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.22/commons-compress-1.22.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.22/commons-compress-1.22.pom (22 kB at 530 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/54/commons-parent-54.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/54/commons-parent-54.pom (82 kB at 1.7 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/connectbot/jbcrypt/jbcrypt/1.0.0/jbcrypt-1.0.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/connectbot/jbcrypt/jbcrypt/1.0.0/jbcrypt-1.0.0.pom (1.3 kB at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/jansi/jansi/1.11/jansi-1.11.pom (3.6 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/jansi/jansi-project/1.11/jansi-project-1.11.pom (11 kB at 286 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/fusesource-pom/1.8/fusesource-pom-1.8.pom (15 kB at 341 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/crypto-util/1.8/crypto-util-1.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/crypto-util/1.8/crypto-util-1.8.pom (3.9 kB at 100 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/memory-monitor/1.12/memory-monitor-1.12.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/memory-monitor/1.12/memory-monitor-1.12.pom (3.7 kB at 92 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/symbol-annotation/1.24/symbol-annotation-1.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/symbol-annotation/1.24/symbol-annotation-1.24.pom (3.3 kB at 108 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/task-reactor/1.8/task-reactor-1.8.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/task-reactor/1.8/task-reactor-1.8.pom (3.5 kB at 98 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-spi/2.387.3/websocket-spi-2.387.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-spi/2.387.3/websocket-spi-2.387.3.pom (4.3 kB at 130 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jfreechart/1.0.19/jfreechart-1.0.19.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jfreechart/1.0.19/jfreechart-1.0.19.pom (9.6 kB at 252 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jcommon/1.0.23/jcommon-1.0.23.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jcommon/1.0.23/jcommon-1.0.23.pom (8.5 kB at 219 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/hudson/commons-jelly-tags-define/1.0.1-hudson-20071021/commons-jelly-tags-define-1.0.1-hudson-20071021.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/hudson/commons-jelly-tags-define/1.0.1-hudson-20071021/commons-jelly-tags-define-1.0.1-hudson-20071021.pom (2.3 kB at 64 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/robust-http-client/robust-http-client/1.2/robust-http-client-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/robust-http-client/robust-http-client/1.2/robust-http-client-1.2.pom (3.3 kB at 102 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/winp/winp/1.30/winp-1.30.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/winp/winp/1.30/winp-1.30.pom (3.5 kB at 111 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.30/access-modifier-annotation-1.30.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.30/access-modifier-annotation-1.30.pom (4.3 kB at 130 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/windows-package-checker/1.2/windows-package-checker-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/windows-package-checker/1.2/windows-package-checker-1.2.pom (1.5 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interop/2.0.8-kohsuke-1/j-interop-2.0.8-kohsuke-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interop/2.0.8-kohsuke-1/j-interop-2.0.8-kohsuke-1.pom (689 B at 18 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interop-parent/2.0.8-kohsuke-1/j-interop-parent-2.0.8-kohsuke-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interop-parent/2.0.8-kohsuke-1/j-interop-parent-2.0.8-kohsuke-1.pom (990 B at 30 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/1/pom-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/1/pom-1.pom (3.2 kB at 98 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interopdeps/2.0.8-kohsuke-1/j-interopdeps-2.0.8-kohsuke-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interopdeps/2.0.8-kohsuke-1/j-interopdeps-2.0.8-kohsuke-1.pom (670 B at 17 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/samba/jcifs/jcifs/1.3.18-kohsuke-1/jcifs-1.3.18-kohsuke-1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/samba/jcifs/jcifs/1.3.18-kohsuke-1/jcifs-1.3.18-kohsuke-1.pom (2.6 kB at 82 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1756.1758.v13fcdc2c8c34/stapler-1756.1758.v13fcdc2c8c34.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1756.1758.v13fcdc2c8c34/stapler-1756.1758.v13fcdc2c8c34.pom (6.9 kB at 191 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.pom (16 kB at 359 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.7/project-1.0.7.pom (14 kB at 394 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-codemirror/1.3/stapler-adjunct-codemirror-1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-codemirror/1.3/stapler-adjunct-codemirror-1.3.pom (1.6 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-timeline/1.5/stapler-adjunct-timeline-1.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-timeline/1.5/stapler-adjunct-timeline-1.5.pom (2.0 kB at 49 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1756.1758.v13fcdc2c8c34/stapler-groovy-1756.1758.v13fcdc2c8c34.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1756.1758.v13fcdc2c8c34/stapler-groovy-1756.1758.v13fcdc2c8c34.pom (4.6 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1756.1758.v13fcdc2c8c34/stapler-jelly-1756.1758.v13fcdc2c8c34.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1756.1758.v13fcdc2c8c34/stapler-jelly-1756.1758.v13fcdc2c8c34.pom (5.1 kB at 143 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom (2.8 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20220630/commons-jelly-1.1-jenkins-20220630.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20220630/commons-jelly-1.1-jenkins-20220630.pom (6.2 kB at 189 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.4/asm-9.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 74 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.4/asm-analysis-9.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.4/asm-analysis-9.4.pom (2.6 kB at 73 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.4/asm-tree-9.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.4/asm-tree-9.4.pom (2.6 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.4/asm-commons-9.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.4/asm-commons-9.4.pom (2.8 kB at 82 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.4/asm-util-9.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.4/asm-util-9.4.pom (2.9 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.6/jcl-over-slf4j-2.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.6/jcl-over-slf4j-2.0.6.pom (1.2 kB at 32 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom (17 kB at 475 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom (1.6 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/log4j-over-slf4j/2.0.6/log4j-over-slf4j-2.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/log4j-over-slf4j/2.0.6/log4j-over-slf4j-2.0.6.pom (1.2 kB at 33 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-web/5.8.1/spring-security-web-5.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-web/5.8.1/spring-security-web-5.8.1.pom (3.2 kB at 94 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-core/5.8.1/spring-security-core-5.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-core/5.8.1/spring-security-core-5.8.1.pom (3.0 kB at 87 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-crypto/5.8.1/spring-security-crypto-5.8.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-crypto/5.8.1/spring-security-crypto-5.8.1.pom (1.9 kB at 43 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-aop/5.3.24/spring-aop-5.3.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-aop/5.3.24/spring-aop-5.3.24.pom (2.2 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-beans/5.3.24/spring-beans-5.3.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-beans/5.3.24/spring-beans-5.3.24.pom (2.0 kB at 32 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-core/5.3.24/spring-core-5.3.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-core/5.3.24/spring-core-5.3.24.pom (2.0 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-context/5.3.24/spring-context-5.3.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-context/5.3.24/spring-context-5.3.24.pom (2.6 kB at 59 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-expression/5.3.24/spring-expression-5.3.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-expression/5.3.24/spring-expression-5.3.24.pom (2.1 kB at 52 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-web/5.3.24/spring-web-5.3.24.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-web/5.3.24/spring-web-5.3.24.pom (2.2 kB at 55 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xpp3/xpp3/1.1.4c/xpp3-1.1.4c.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xpp3/xpp3/1.1.4c/xpp3-1.1.4c.pom (2.1 kB at 57 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.387.3/jenkins-war-2.387.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.387.3/jenkins-war-2.387.3.pom (5.8 kB at 90 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty10/2.387.3/websocket-jetty10-2.387.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty10/2.387.3/websocket-jetty10-2.387.3.pom (4.9 kB at 92 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 375 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.9/metainf-services-1.9.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.9/metainf-services-1.9.pom (3.0 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty9/2.387.3/websocket-jetty9-2.387.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty9/2.387.3/websocket-jetty9-2.387.3.pom (4.9 kB at 94 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-jdk14/2.0.6/slf4j-jdk14-2.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-jdk14/2.0.6/slf4j-jdk14-2.0.6.pom (1.1 kB at 8.6 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jakarta.servlet-api/4.0.4/jakarta.servlet-api-4.0.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jakarta.servlet-api/4.0.4/jakarta.servlet-api-4.0.4.pom (17 kB at 311 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom (13 kB at 381 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness/2034.v41c9cb_349299/jenkins-test-harness-2034.v41c9cb_349299.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness/2034.v41c9cb_349299/jenkins-test-harness-2034.v41c9cb_349299.pom (7.9 kB at 204 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/junit/junit/4.13.2/junit-4.13.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 795 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom (1.4 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom (1.1 kB at 30 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness-htmlunit/147.va_2415a_7c06a_0/jenkins-test-harness-htmlunit-147.va_2415a_7c06a_0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness-htmlunit/147.va_2415a_7c06a_0/jenkins-test-harness-htmlunit-147.va_2415a_7c06a_0.pom (2.9 kB at 80 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-api/5.9.3/junit-jupiter-api-5.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-api/5.9.3/junit-jupiter-api-5.9.3.pom (3.2 kB at 82 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.3/junit-platform-commons-1.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.3/junit-platform-commons-1.9.3.pom (2.8 kB at 81 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.pom (1.5 kB at 40 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/netbeans/modules/org-netbeans-insane/RELEASE180/org-netbeans-insane-RELEASE180.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/netbeans/modules/org-netbeans-insane/RELEASE180/org-netbeans-insane-RELEASE180.pom (554 B at 14 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/netbeans/netbeans-parent/3/netbeans-parent-3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/netbeans/netbeans-parent/3/netbeans-parent-3.pom (5.0 kB at 134 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-core/1.36/jmh-core-1.36.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-core/1.36/jmh-core-1.36.pom (9.3 kB at 251 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-parent/1.36/jmh-parent-1.36.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-parent/1.36/jmh-parent-1.36.pom (12 kB at 300 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.pom (14 kB at 317 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-math3/3.2/commons-math3-3.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-math3/3.2/commons-math3-3.2.pom (17 kB at 379 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/28/commons-parent-28.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.pom (3.7 kB at 109 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/test-annotations/1.4/test-annotations-1.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/test-annotations/1.4/test-annotations-1.4.pom (3.4 kB at 86 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter/5.9.3/junit-jupiter-5.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter/5.9.3/junit-jupiter-5.9.3.pom (3.2 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-params/5.9.3/junit-jupiter-params-5.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-params/5.9.3/junit-jupiter-params-5.9.3.pom (3.0 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-engine/5.9.3/junit-jupiter-engine-5.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-engine/5.9.3/junit-jupiter-engine-5.9.3.pom (3.2 kB at 91 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.3/junit-platform-engine-1.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.3/junit-platform-engine-1.9.3.pom (3.2 kB at 91 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/vintage/junit-vintage-engine/5.9.3/junit-vintage-engine-5.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/vintage/junit-vintage-engine/5.9.3/junit-vintage-engine-5.9.3.pom (3.2 kB at 84 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-core/2.387.3/jenkins-core-2.387.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/cli/2.387.3/cli-2.387.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/3107.v665000b_51092/remoting-3107.v665000b_51092.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/args4j/args4j/2.33/args4j-2.33.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/args4j/args4j/2.33/args4j-2.33.jar (155 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar (4.6 kB at 27 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 11 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/code/findbugs/jsr305/3.0.1/jsr305-3.0.1.jar (20 kB at 82 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice/5.1.0/guice-5.1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/3107.v665000b_51092/remoting-3107.v665000b_51092.jar (1.4 MB at 3.5 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/infradna/tool/bridge-method-annotation/1.25/bridge-method-annotation-1.25.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/infradna/tool/bridge-method-annotation/1.25/bridge-method-annotation-1.25.jar (3.8 kB at 9.0 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/solaris/embedded_su4j/1.1/embedded_su4j-1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/solaris/embedded_su4j/1.1/embedded_su4j-1.1.jar (5.3 kB at 12 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/xml/txw2/txw2/20110809/txw2-20110809.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/cli/2.387.3/cli-2.387.3.jar (3.4 MB at 7.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/sun/xml/txw2/txw2/20110809/txw2-20110809.jar (67 kB at 138 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/xstream/xstream/1.4.20/xstream-1.4.20.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar (3.0 MB at 5.8 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.jar (19 kB at 38 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.15/commons-codec-1.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.jar (30 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-fmt/1.0/commons-jelly-tags-fmt-1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/google/inject/guice/5.1.0/guice-5.1.0.jar (778 kB at 1.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-xml/1.1/commons-jelly-tags-xml-1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-fmt/1.0/commons-jelly-tags-fmt-1.0.jar (22 kB at 39 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-jelly/commons-jelly-tags-xml/1.1/commons-jelly-tags-xml-1.1.jar (37 kB at 63 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/stapler/jenkins-stapler-support/1.1/jenkins-stapler-support-1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/stapler/jenkins-stapler-support/1.1/jenkins-stapler-support-1.1.jar (4.6 kB at 7.3 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/1.2.7/jakarta.servlet.jsp.jstl-api-1.2.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-core/2.387.3/jenkins-core-2.387.3.jar (11 MB at 17 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen/2.0.0/jaxen-2.0.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jsp/jstl/jakarta.servlet.jsp.jstl-api/1.2.7/jakarta.servlet.jsp.jstl-api-1.2.7.jar (44 kB at 66 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jline/jline/2.14.6/jline-2.14.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-lang/commons-lang/2.6/commons-lang-2.6.jar (284 kB at 422 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jaxen/jaxen/2.0.0/jaxen-2.0.0.jar (224 kB at 304 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar (2.3 kB at 2.9 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-codec/commons-codec/1.15/commons-codec-1.15.jar (354 kB at 447 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jline/jline/2.14.6/jline-2.14.6.jar (269 kB at 336 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.12/ant-1.10.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar (44 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.jar (19 kB at 22 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.22/commons-compress-1.22.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/xstream/xstream/1.4.20/xstream-1.4.20.jar (645 kB at 754 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/connectbot/jbcrypt/jbcrypt/1.0.0/jbcrypt-1.0.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar (1.9 MB at 2.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/connectbot/jbcrypt/jbcrypt/1.0.0/jbcrypt-1.0.0.jar (17 kB at 19 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.17/annotation-indexer-1.17.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/fusesource/jansi/jansi/1.11/jansi-1.11.jar (114 kB at 125 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/crypto-util/1.8/crypto-util-1.8.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.10.12/ant-1.10.12.jar (2.3 MB at 2.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/memory-monitor/1.12/memory-monitor-1.12.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.17/annotation-indexer-1.17.jar (18 kB at 19 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/symbol-annotation/1.24/symbol-annotation-1.24.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/crypto-util/1.8/crypto-util-1.8.jar (10 kB at 11 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/task-reactor/1.8/task-reactor-1.8.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/memory-monitor/1.12/memory-monitor-1.12.jar (19 kB at 20 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-spi/2.387.3/websocket-spi-2.387.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/symbol-annotation/1.24/symbol-annotation-1.24.jar (2.7 kB at 2.7 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jfreechart/1.0.19/jfreechart-1.0.19.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/task-reactor/1.8/task-reactor-1.8.jar (23 kB at 23 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jcommon/1.0.23/jcommon-1.0.23.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar (324 kB at 319 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/hudson/commons-jelly-tags-define/1.0.1-hudson-20071021/commons-jelly-tags-define-1.0.1-hudson-20071021.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.22/commons-compress-1.22.jar (1.0 MB at 1.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/robust-http-client/robust-http-client/1.2/robust-http-client-1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/hudson/commons-jelly-tags-define/1.0.1-hudson-20071021/commons-jelly-tags-define-1.0.1-hudson-20071021.jar (23 kB at 22 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/winp/winp/1.30/winp-1.30.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jcommon/1.0.23/jcommon-1.0.23.jar (330 kB at 311 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.30/access-modifier-annotation-1.30.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/robust-http-client/robust-http-client/1.2/robust-http-client-1.2.jar (4.4 kB at 4.1 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/windows-package-checker/1.2/windows-package-checker-1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.30/access-modifier-annotation-1.30.jar (12 kB at 11 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interop/2.0.8-kohsuke-1/j-interop-2.0.8-kohsuke-1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/windows-package-checker/1.2/windows-package-checker-1.2.jar (4.4 kB at 3.9 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interopdeps/2.0.8-kohsuke-1/j-interopdeps-2.0.8-kohsuke-1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jvnet/winp/winp/1.30/winp-1.30.jar (225 kB at 198 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/samba/jcifs/jcifs/1.3.18-kohsuke-1/jcifs-1.3.18-kohsuke-1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interopdeps/2.0.8-kohsuke-1/j-interopdeps-2.0.8-kohsuke-1.jar (120 kB at 104 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1756.1758.v13fcdc2c8c34/stapler-1756.1758.v13fcdc2c8c34.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jfree/jfreechart/1.0.19/jfreechart-1.0.19.jar (1.6 MB at 1.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-spi/2.387.3/websocket-spi-2.387.3.jar (4.7 kB at 4.0 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-codemirror/1.3/stapler-adjunct-codemirror-1.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar (26 kB at 22 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-timeline/1.5/stapler-adjunct-timeline-1.5.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/jinterop/j-interop/2.0.8-kohsuke-1/j-interop-2.0.8-kohsuke-1.jar (377 kB at 308 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1756.1758.v13fcdc2c8c34/stapler-groovy-1756.1758.v13fcdc2c8c34.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-groovy/1756.1758.v13fcdc2c8c34/stapler-groovy-1756.1758.v13fcdc2c8c34.jar (36 kB at 29 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1756.1758.v13fcdc2c8c34/stapler-jelly-1756.1758.v13fcdc2c8c34.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/samba/jcifs/jcifs/1.3.18-kohsuke-1/jcifs-1.3.18-kohsuke-1.jar (398 kB at 317 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-timeline/1.5/stapler-adjunct-timeline-1.5.jar (182 kB at 145 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20220630/commons-jelly-1.1-jenkins-20220630.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-adjunct-codemirror/1.3/stapler-adjunct-codemirror-1.3.jar (276 kB at 215 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.4/asm-9.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler-jelly/1756.1758.v13fcdc2c8c34/stapler-jelly-1756.1758.v13fcdc2c8c34.jar (94 kB at 72 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.4/asm-analysis-9.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/commons-jelly/1.1-jenkins-20220630/commons-jelly-1.1-jenkins-20220630.jar (185 kB at 142 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.4/asm-commons-9.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/stapler/stapler/1756.1758.v13fcdc2c8c34/stapler-1756.1758.v13fcdc2c8c34.jar (474 kB at 363 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.4/asm-tree-9.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar (324 kB at 243 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-commons/9.4/asm-commons-9.4.jar (73 kB at 55 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.4/asm-util-9.4.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.6/jcl-over-slf4j-2.0.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-analysis/9.4/asm-analysis-9.4.jar (34 kB at 26 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 90 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/log4j-over-slf4j/2.0.6/log4j-over-slf4j-2.0.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-tree/9.4/asm-tree-9.4.jar (53 kB at 39 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-web/5.8.1/spring-security-web-5.8.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/jcl-over-slf4j/2.0.6/jcl-over-slf4j-2.0.6.jar (17 kB at 13 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-core/5.8.1/spring-security-core-5.8.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar (63 kB at 45 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-crypto/5.8.1/spring-security-crypto-5.8.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/ow2/asm/asm-util/9.4/asm-util-9.4.jar (92 kB at 66 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-core/5.3.24/spring-core-5.3.24.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/log4j-over-slf4j/2.0.6/log4j-over-slf4j-2.0.6.jar (26 kB at 18 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-aop/5.3.24/spring-aop-5.3.24.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-crypto/5.8.1/spring-security-crypto-5.8.1.jar (83 kB at 59 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-beans/5.3.24/spring-beans-5.3.24.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-core/5.8.1/spring-security-core-5.8.1.jar (494 kB at 328 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-context/5.3.24/spring-context-5.3.24.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/security/spring-security-web/5.8.1/spring-security-web-5.8.1.jar (719 kB at 466 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-expression/5.3.24/spring-expression-5.3.24.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-aop/5.3.24/spring-aop-5.3.24.jar (383 kB at 248 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-web/5.3.24/spring-web-5.3.24.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-core/5.3.24/spring-core-5.3.24.jar (1.5 MB at 938 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xpp3/xpp3/1.1.4c/xpp3-1.1.4c.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-beans/5.3.24/spring-beans-5.3.24.jar (703 kB at 434 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.387.3/jenkins-war-2.387.3.war
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/xpp3/xpp3/1.1.4c/xpp3-1.1.4c.jar (120 kB at 74 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty10/2.387.3/websocket-jetty10-2.387.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-context/5.3.24/spring-context-5.3.24.jar (1.3 MB at 781 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.9/metainf-services-1.9.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.9/metainf-services-1.9.jar (7.5 kB at 4.5 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty9/2.387.3/websocket-jetty9-2.387.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-web/5.3.24/spring-web-5.3.24.jar (1.6 MB at 968 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-jdk14/2.0.6/slf4j-jdk14-2.0.6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty10/2.387.3/websocket-jetty10-2.387.3.jar (9.4 kB at 5.5 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jakarta.servlet-api/4.0.4/jakarta.servlet-api-4.0.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/slf4j/slf4j-jdk14/2.0.6/slf4j-jdk14-2.0.6.jar (9.6 kB at 5.5 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness/2034.v41c9cb_349299/jenkins-test-harness-2034.v41c9cb_349299.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/jakarta/servlet/jakarta.servlet-api/4.0.4/jakarta.servlet-api-4.0.4.jar (83 kB at 47 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/websocket-jetty9/2.387.3/websocket-jetty9-2.387.3.jar (8.2 kB at 4.7 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/junit/junit/4.13.2/junit-4.13.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/springframework/spring-expression/5.3.24/spring-expression-5.3.24.jar (289 kB at 161 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.jar (1.5 kB at 833 B/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness-htmlunit/147.va_2415a_7c06a_0/jenkins-test-harness-htmlunit-147.va_2415a_7c06a_0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar (123 kB at 67 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-api/5.9.3/junit-jupiter-api-5.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 206 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness/2034.v41c9cb_349299/jenkins-test-harness-2034.v41c9cb_349299.jar (453 kB at 241 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.3/junit-platform-commons-1.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 4.0 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/netbeans/modules/org-netbeans-insane/RELEASE180/org-netbeans-insane-RELEASE180.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.3/junit-platform-commons-1.9.3.jar (103 kB at 54 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-core/1.36/jmh-core-1.36.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-api/5.9.3/junit-jupiter-api-5.9.3.jar (208 kB at 106 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar (78 kB at 39 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-core/1.36/jmh-core-1.36.jar (537 kB at 259 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/netbeans/modules/org-netbeans-insane/RELEASE180/org-netbeans-insane-RELEASE180.jar (318 kB at 153 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/test-annotations/1.4/test-annotations-1.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/openjdk/jmh/jmh-generator-annprocess/1.36/jmh-generator-annprocess-1.36.jar (31 kB at 15 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter/5.9.3/junit-jupiter-5.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/test-annotations/1.4/test-annotations-1.4.jar (4.5 kB at 2.1 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-params/5.9.3/junit-jupiter-params-5.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter/5.9.3/junit-jupiter-5.9.3.jar (6.4 kB at 3.0 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-engine/5.9.3/junit-jupiter-engine-5.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-test-harness-htmlunit/147.va_2415a_7c06a_0/jenkins-test-harness-htmlunit-147.va_2415a_7c06a_0.jar (7.0 MB at 3.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/vintage/junit-vintage-engine/5.9.3/junit-vintage-engine-5.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar (1.7 MB at 780 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.3/junit-platform-engine-1.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.3/junit-platform-engine-1.9.3.jar (189 kB at 85 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/vintage/junit-vintage-engine/5.9.3/junit-vintage-engine-5.9.3.jar (67 kB at 30 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar (6.8 kB at 3.0 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-engine/5.9.3/junit-jupiter-engine-5.9.3.jar (247 kB at 109 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/jupiter/junit-jupiter-params/5.9.3/junit-jupiter-params-5.9.3.jar (580 kB at 253 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.387.3/jenkins-war-2.387.3.war (98 MB at 27 MB/s)
[INFO]
[INFO] --- maven-hpi-plugin:3.47:validate (default-validate) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-hpi-plugin:3.47:validate-hpi (default-validate-hpi) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.0/junit-bom-5.9.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/junit-bom/5.9.0/junit-bom-5.9.0.pom (5.6 kB at 171 kB/s)
[INFO]
[INFO] --- maven-enforcer-plugin:3.3.0:enforce (display-info) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/extra-enforcer-rules/1.7.0/extra-enforcer-rules-1.7.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/extra-enforcer-rules/1.7.0/extra-enforcer-rules-1.7.0.pom (7.9 kB at 226 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.pom (5.3 kB at 170 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/incrementals/incrementals-enforcer-rules/1.7/incrementals-enforcer-rules-1.7.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/incrementals/incrementals-enforcer-rules/1.7/incrementals-enforcer-rules-1.7.pom (943 B at 31 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.pom (3.6 kB at 120 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.pom (4.1 kB at 96 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.pom (5.0 kB at 151 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/extra-enforcer-rules/1.7.0/extra-enforcer-rules-1.7.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/incrementals/incrementals-enforcer-rules/1.7/incrementals-enforcer-rules-1.7.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar (58 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/io/jenkins/tools/incrementals/incrementals-enforcer-rules/1.7/incrementals-enforcer-rules-1.7.jar (5.6 kB at 121 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/mojo/extra-enforcer-rules/1.7.0/extra-enforcer-rules-1.7.0.jar (51 kB at 953 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.jar (145 kB at 3.2 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.jar (14 kB at 293 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar (389 kB at 2.0 MB/s)
[INFO] Rule 0: io.jenkins.tools.incrementals.enforcer.RequireExtensionVersion passed
[INFO] Rule 1: org.apache.maven.enforcer.rules.version.RequireMavenVersion passed
[INFO] Rule 2: org.apache.maven.enforcer.rules.version.RequireJavaVersion passed
[INFO] Rule 3: org.codehaus.mojo.extraenforcer.dependencies.EnforceBytecodeVersion passed
[INFO] Rule 4: org.apache.maven.enforcer.rules.dependency.BannedDependencies passed
[INFO] Rule 5: org.apache.maven.enforcer.rules.dependency.RequireUpperBoundDeps passed
[INFO]
[INFO] --- maven-enforcer-plugin:3.3.0:enforce (no-snapshots-in-release) @ HelloWorldNotifier ---
[INFO] Rule 0: org.apache.maven.enforcer.rules.dependency.RequireReleaseDeps passed
[INFO]
[INFO] --- localizer-maven-plugin:1.31:generate (default) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.pom (3.0 kB at 80 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.6.3/maven-3.6.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven/3.6.3/maven-3.6.3.pom (26 kB at 801 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.6.3/maven-model-3.6.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.6.3/maven-model-3.6.3.pom (4.1 kB at 113 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.6.3/maven-artifact-3.6.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.6.3/maven-artifact-3.6.3.pom (2.4 kB at 68 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.pom (4.5 kB at 131 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 95 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 21 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 125 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 510 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 90 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.pom (4.8 kB at 134 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom (18 kB at 506 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.9.15/ant-1.9.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.9.15/ant-1.9.15.pom (10.0 kB at 238 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.9.15/ant-parent-1.9.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-parent/1.9.15/ant-parent-1.9.15.pom (5.6 kB at 152 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.9.15/ant-launcher-1.9.15.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.9.15/ant-launcher-1.9.15.pom (2.3 kB at 60 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom (17 kB at 477 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/22/commons-parent-22.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/22/commons-parent-22.pom (42 kB at 838 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.4/access-modifier-annotation-1.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.4/access-modifier-annotation-1.4.pom (855 B at 28 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier/1.4/access-modifier-1.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier/1.4/access-modifier-1.4.pom (2.8 kB at 76 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/3/pom-3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/pom/3/pom-3.pom (3.6 kB at 100 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.4/annotation-indexer-1.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.4/annotation-indexer-1.4.pom (1.5 kB at 44 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/jenkins/1.26/jenkins-1.26.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/jenkins/1.26/jenkins-1.26.pom (27 kB at 742 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.6.3/maven-model-3.6.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.jar (47 kB at 1.0 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.0/maven-core-3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 1.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-model/3.6.3/maven-model-3.6.3.jar (215 kB at 2.9 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar (47 kB at 676 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.jar (26 kB at 304 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar (38 kB at 374 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar (106 kB at 957 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 1.6 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar (14 kB at 113 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.6.3/maven-artifact-3.6.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar (74 kB at 530 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.9.15/ant-1.9.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.jar (196 kB at 1.3 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.9.15/ant-launcher-1.9.15.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-core/3.0/maven-core-3.0.jar (527 kB at 3.4 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/maven-artifact/3.6.3/maven-artifact-3.6.3.jar (58 kB at 355 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.4/access-modifier-annotation-1.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant-launcher/1.9.15/ant-launcher-1.9.15.jar (18 kB at 94 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.4/annotation-indexer-1.4.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.4/access-modifier-annotation-1.4.jar (6.9 kB at 35 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jenkins-ci/annotation-indexer/1.4/annotation-indexer-1.4.jar (16 kB at 67 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar (615 kB at 2.4 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar (316 kB at 1.2 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/ant/ant/1.9.15/ant-1.9.15.jar (2.1 MB at 7.4 MB/s)
[INFO]
[INFO] --- maven-resources-plugin:3.3.1:resources (default-resources) @ HelloWorldNotifier ---
[INFO] Copying 1 resource from src/main/resources to target/classes
[INFO]
[INFO] --- flatten-maven-plugin:1.5.0:flatten (flatten) @ HelloWorldNotifier ---
[INFO] Generating flattened POM of project io.jenkins.plugins:HelloWorldNotifier:hpi:1.0-SNAPSHOT...
[INFO]
[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 167 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 125 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.2 kB at 164 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 142 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 112 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 479 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 25 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 246 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.4 kB at 61 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 30 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 23 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 163 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 34 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 37 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 387 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 1.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 2.7 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 64 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 334 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 281 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 2.5 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 2.3 MB/s)
[INFO] Changes detected - recompiling the module! :dependency
[INFO]
[INFO] --- access-modifier-checker:1.32:enforce (default-enforce) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.32/access-modifier-annotation-1.32.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.32/access-modifier-annotation-1.32.pom (3.5 kB at 106 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-suppressions/1.32/access-modifier-suppressions-1.32.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-suppressions/1.32/access-modifier-suppressions-1.32.pom (4.0 kB at 116 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-annotations/3.9.0/maven-plugin-annotations-3.9.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-annotations/3.9.0/maven-plugin-annotations-3.9.0.pom (1.5 kB at 38 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools/3.9.0/maven-plugin-tools-3.9.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-tools/3.9.0/maven-plugin-tools-3.9.0.pom (17 kB at 429 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.11/metainf-services-1.11.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.11/metainf-services-1.11.pom (3.0 kB at 74 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.32/access-modifier-annotation-1.32.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-suppressions/1.32/access-modifier-suppressions-1.32.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-annotations/3.9.0/maven-plugin-annotations-3.9.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.11/metainf-services-1.11.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-annotation/1.32/access-modifier-annotation-1.32.jar (12 kB at 307 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/access-modifier-suppressions/1.32/access-modifier-suppressions-1.32.jar (3.8 kB at 108 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/plugin-tools/maven-plugin-annotations/3.9.0/maven-plugin-annotations-3.9.0.jar (14 kB at 362 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kohsuke/metainf-services/metainf-services/1.11/metainf-services-1.11.jar (7.5 kB at 183 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar (169 kB at 2.6 MB/s)
[INFO]
[INFO] --- maven-hpi-plugin:3.47:insert-test (default-insert-test) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-antrun-plugin:3.1.0:run (createTempDir) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.pom (8.0 kB at 221 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.jar (264 kB at 1.6 MB/s)
[INFO] Executing tasks
[INFO] [mkdir] Created dir: /root/hw/HelloWorldNotifier/target/tmp
[INFO] Executed tasks
[INFO]
[INFO] --- maven-resources-plugin:3.3.1:testResources (default-testResources) @ HelloWorldNotifier ---
[INFO] skip non existing resourceDirectory /root/hw/HelloWorldNotifier/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.11.0:testCompile (default-testCompile) @ HelloWorldNotifier ---
[INFO] Changes detected - recompiling the module! :dependency
[INFO] Compiling 1 source file with javac [debug release 11] to target/test-classes
[INFO]
[INFO] --- maven-hpi-plugin:3.47:test-hpl (default-test-hpl) @ HelloWorldNotifier ---
[INFO] Generating /root/hw/HelloWorldNotifier/target/test-classes/the.hpl
[INFO]
[INFO] --- maven-hpi-plugin:3.47:resolve-test-dependencies (default-resolve-test-dependencies) @ HelloWorldNotifier ---
[INFO]
[INFO] --- maven-hpi-plugin:3.47:test-runtime (default-test-runtime) @ HelloWorldNotifier ---
[INFO] Setting jenkins.addOpens to --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.desktop/com.sun.beans.introspect=ALL-UNNAMED
[INFO] Setting jenkins.insaneHook to --patch-module='java.base=/root/hw/HelloWorldNotifier/target/patch-modules/org-netbeans-insane-hook.jar' --add-exports=java.base/org.netbeans.insane.hook=ALL-UNNAMED
[INFO]
[INFO] --- maven-surefire-plugin:3.1.2:test (default-test) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/maven-surefire-common/3.1.2/maven-surefire-common-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/maven-surefire-common/3.1.2/maven-surefire-common-3.1.2.pom (6.1 kB at 152 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-api/3.1.2/surefire-api-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-api/3.1.2/surefire-api-3.1.2.pom (3.5 kB at 101 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-logger-api/3.1.2/surefire-logger-api-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-logger-api/3.1.2/surefire-logger-api-3.1.2.pom (3.3 kB at 79 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-shared-utils/3.1.2/surefire-shared-utils-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-shared-utils/3.1.2/surefire-shared-utils-3.1.2.pom (4.1 kB at 123 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-api/3.1.2/surefire-extensions-api-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-api/3.1.2/surefire-extensions-api-3.1.2.pom (3.3 kB at 81 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-booter/3.1.2/surefire-booter-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-booter/3.1.2/surefire-booter-3.1.2.pom (4.5 kB at 104 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-spi/3.1.2/surefire-extensions-spi-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-spi/3.1.2/surefire-extensions-spi-3.1.2.pom (1.8 kB at 50 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.pom (5.8 kB at 181 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.pom (4.3 kB at 113 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-plexus/0.3.5/sisu-plexus-0.3.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-plexus/0.3.5/sisu-plexus-0.3.5.pom (14 kB at 352 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (13 kB at 373 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom (6.3 kB at 185 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/weld/weld-parent/26/weld-parent-26.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/weld/weld-parent/26/weld-parent-26.pom (32 kB at 924 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.pom (2.6 kB at 82 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-inject/0.3.5/sisu-inject-0.3.5.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/eclipse/sisu/sisu-inject/0.3.5/sisu-inject-0.3.5.pom (14 kB at 412 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom (20 kB at 635 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/57/commons-parent-57.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/commons/commons-parent/57/commons-parent-57.pom (83 kB at 2.2 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/maven-surefire-common/3.1.2/maven-surefire-common-3.1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-api/3.1.2/surefire-api-3.1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-logger-api/3.1.2/surefire-logger-api-3.1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-api/3.1.2/surefire-extensions-api-3.1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-booter/3.1.2/surefire-booter-3.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-logger-api/3.1.2/surefire-logger-api-3.1.2.jar (14 kB at 324 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-spi/3.1.2/surefire-extensions-spi-3.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-api/3.1.2/surefire-extensions-api-3.1.2.jar (26 kB at 517 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-api/3.1.2/surefire-api-3.1.2.jar (171 kB at 2.9 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-extensions-spi/3.1.2/surefire-extensions-spi-3.1.2.jar (8.2 kB at 126 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-shared-utils/3.1.2/surefire-shared-utils-3.1.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.jar (61 kB at 707 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-booter/3.1.2/surefire-booter-3.1.2.jar (118 kB at 1.0 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/maven-surefire-common/3.1.2/maven-surefire-common-3.1.2.jar (306 kB at 2.0 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar (474 kB at 1.8 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-shared-utils/3.1.2/surefire-shared-utils-3.1.2.jar (2.3 MB at 6.4 MB/s)
[INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-junit-platform/3.1.2/surefire-junit-platform-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-junit-platform/3.1.2/surefire-junit-platform-3.1.2.pom (4.7 kB at 120 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-providers/3.1.2/surefire-providers-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-providers/3.1.2/surefire-providers-3.1.2.pom (2.6 kB at 79 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/common-java5/3.1.2/common-java5-3.1.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/common-java5/3.1.2/common-java5-3.1.2.pom (2.8 kB at 78 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.2/junit-platform-launcher-1.9.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.2/junit-platform-launcher-1.9.2.pom (3.0 kB at 41 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.2/junit-platform-engine-1.9.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.2/junit-platform-engine-1.9.2.pom (3.2 kB at 103 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.2/junit-platform-commons-1.9.2.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.2/junit-platform-commons-1.9.2.pom (2.8 kB at 83 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-junit-platform/3.1.2/surefire-junit-platform-3.1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/common-java5/3.1.2/common-java5-3.1.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.2/junit-platform-launcher-1.9.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.2/junit-platform-engine-1.9.2.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.2/junit-platform-commons-1.9.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/common-java5/3.1.2/common-java5-3.1.2.jar (18 kB at 462 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-engine/1.9.2/junit-platform-engine-1.9.2.jar (189 kB at 4.5 MB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/surefire/surefire-junit-platform/3.1.2/surefire-junit-platform-3.1.2.jar (27 kB at 418 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-commons/1.9.2/junit-platform-commons-1.9.2.jar (103 kB at 741 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.2/junit-platform-launcher-1.9.2.jar (169 kB at 1.1 MB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.3/junit-platform-launcher-1.9.3.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.3/junit-platform-launcher-1.9.3.pom (3.0 kB at 42 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.3/junit-platform-launcher-1.9.3.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/junit/platform/junit-platform-launcher/1.9.3/junit-platform-launcher-1.9.3.jar (169 kB at 1.3 MB/s)
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
Running tests for io.jenkins.plugins:HelloWorldNotifier:1.0-SNAPSHOT
[INFO] Running InjectedTest
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.45 s -- in InjectedTest
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- license-maven-plugin:104.v2171757ee6dd:process (default) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.13/groovy-xml-4.0.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.13/groovy-xml-4.0.13.pom (23 kB at 396 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-bom/4.0.13/groovy-bom-4.0.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-bom/4.0.13/groovy-bom-4.0.13.pom (27 kB at 634 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.13/groovy-4.0.13.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.13/groovy-4.0.13.pom (24 kB at 561 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.13/groovy-xml-4.0.13.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.13/groovy-4.0.13.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy-xml/4.0.13/groovy-xml-4.0.13.jar (213 kB at 666 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/groovy/groovy/4.0.13/groovy-4.0.13.jar (7.6 MB at 15 MB/s)
[INFO] Generated /root/hw/HelloWorldNotifier/target/HelloWorldNotifier/WEB-INF/licenses.xml
[INFO]
[INFO] --- maven-hpi-plugin:3.47:hpi (default-hpi) @ HelloWorldNotifier ---
[INFO] Generating /root/hw/HelloWorldNotifier/target/HelloWorldNotifier/META-INF/MANIFEST.MF
[INFO] Checking for attached .jar artifact ...
[INFO] Generating jar /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.jar
[INFO] Building jar: /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.jar
[INFO] Exploding webapp...
[INFO] Copy webapp webResources to /root/hw/HelloWorldNotifier/target/HelloWorldNotifier
[INFO] Assembling webapp HelloWorldNotifier in /root/hw/HelloWorldNotifier/target/HelloWorldNotifier
[INFO] Generating hpi /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.hpi
[INFO] Building jar: /root/hw/HelloWorldNotifier/target/HelloWorldNotifier.hpi
[INFO]
[INFO] --- maven-jar-plugin:3.3.0:test-jar (maybe-test-jar) @ HelloWorldNotifier ---
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom (4.5 kB at 102 kB/s)
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.jar
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar (36 kB at 773 kB/s)
Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.jar (267 kB at 2.1 MB/s)
[INFO] Skipping packaging of the test-jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:03 min
[INFO] Finished at: 2023-08-25T01:37:45Z
[INFO] ------------------------------------------------------------------------
# wget https://repo.maven.apache.org/maven2/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.7/git-changelist-maven-extension-1.7-sources.jar
# jar xf git-changelist-maven-extension-1.7-sources.jar
# find io/ -type f
io/jenkins/tools/incrementals/git_changelist_maven_extension/Main.java
# javac -d . Main.java
Main.java:39: error: package javax.inject does not exist
import javax.inject.Inject;
^
Main.java:40: error: package javax.inject does not exist
import javax.inject.Named;
^
Main.java:41: error: package javax.inject does not exist
import javax.inject.Singleton;
^
Main.java:42: error: package org.apache.maven does not exist
import org.apache.maven.AbstractMavenLifecycleParticipant;
^
Main.java:43: error: package org.apache.maven does not exist
import org.apache.maven.MavenExecutionException;
^
Main.java:44: error: package org.apache.maven.execution does not exist
import org.apache.maven.execution.MavenSession;
^
Main.java:45: error: package org.apache.maven.project does not exist
import org.apache.maven.project.MavenProject;
^
Main.java:46: error: package org.codehaus.plexus.logging does not exist
import org.codehaus.plexus.logging.Logger;
^
Main.java:47: error: package org.eclipse.jgit.api does not exist
import org.eclipse.jgit.api.Git;
^
Main.java:48: error: package org.eclipse.jgit.api does not exist
import org.eclipse.jgit.api.Status;
^
Main.java:49: error: package org.eclipse.jgit.api.errors does not exist
import org.eclipse.jgit.api.errors.GitAPIException;
^
Main.java:50: error: package org.eclipse.jgit.lib does not exist
import org.eclipse.jgit.lib.ObjectId;
^
Main.java:51: error: package org.eclipse.jgit.lib does not exist
import org.eclipse.jgit.lib.Repository;
^
Main.java:52: error: package org.eclipse.jgit.revwalk does not exist
import org.eclipse.jgit.revwalk.RevCommit;
^
Main.java:53: error: package org.eclipse.jgit.revwalk does not exist
import org.eclipse.jgit.revwalk.RevWalk;
^
Main.java:65: error: cannot find symbol
public class Main extends AbstractMavenLifecycleParticipant {
^
symbol: class AbstractMavenLifecycleParticipant
Main.java:63: error: cannot find symbol
@Named("git-changelist-maven-extension")
^
symbol: class Named
Main.java:64: error: cannot find symbol
@Singleton
^
symbol: class Singleton
Main.java:71: error: cannot find symbol
private Logger log;
^
symbol: class Logger
location: class Main
Main.java:74: error: cannot find symbol
public void afterSessionStart(MavenSession session) throws MavenExecutionException {
^
symbol: class MavenSession
location: class Main
Main.java:74: error: cannot find symbol
public void afterSessionStart(MavenSession session) throws MavenExecutionException {
^
symbol: class MavenExecutionException
location: class Main
Main.java:181: error: cannot find symbol
private static String summarize(RevCommit c) {
^
symbol: class RevCommit
location: class Main
Main.java:185: error: cannot find symbol
private static int revCount(RevWalk walk, RevCommit c) throws IOException, GitAPIException {
^
symbol: class RevWalk
location: class Main
Main.java:185: error: cannot find symbol
private static int revCount(RevWalk walk, RevCommit c) throws IOException, GitAPIException {
^
symbol: class RevCommit
location: class Main
Main.java:185: error: cannot find symbol
private static int revCount(RevWalk walk, RevCommit c) throws IOException, GitAPIException {
^
symbol: class GitAPIException
location: class Main
Main.java:197: error: cannot find symbol
public void afterProjectsRead(MavenSession session) throws MavenExecutionException {
^
symbol: class MavenSession
location: class Main
Main.java:197: error: cannot find symbol
public void afterProjectsRead(MavenSession session) throws MavenExecutionException {
^
symbol: class MavenExecutionException
location: class Main
Main.java:70: error: cannot find symbol
@Inject
^
symbol: class Inject
location: class Main
Main.java:73: error: method does not override or implement a method from a supertype
@Override
^
Main.java:83: error: cannot find symbol
try (Git git = Git.open(dir)) {
^
symbol: class Git
location: class Main
Main.java:83: error: cannot find symbol
try (Git git = Git.open(dir)) {
^
symbol: variable Git
location: class Main
Main.java:84: error: cannot find symbol
Status status = git.status().call();
^
symbol: class Status
location: class Main
Main.java:94: error: cannot find symbol
throw new MavenExecutionException(error + " (use -D" + IGNORE_DIRT + " to make this nonfatal)", (Throwable) null);
^
symbol: class MavenExecutionException
location: class Main
Main.java:97: error: cannot find symbol
Repository repo = git.getRepository();
^
symbol: class Repository
location: class Main
Main.java:98: error: cannot find symbol
ObjectId head = repo.resolve("HEAD");
^
symbol: class ObjectId
location: class Main
Main.java:101: error: cannot find symbol
try (RevWalk walk = new RevWalk(repo)) {
^
symbol: class RevWalk
location: class Main
Main.java:101: error: cannot find symbol
try (RevWalk walk = new RevWalk(repo)) {
^
symbol: class RevWalk
location: class Main
Main.java:102: error: cannot find symbol
RevCommit headC = walk.parseCommit(head);
^
symbol: class RevCommit
location: class Main
Main.java:105: error: cannot find symbol
Map<String,List<RevCommit>> encountered = new HashMap<>();
^
symbol: class RevCommit
location: class Main
Main.java:108: error: cannot find symbol
for (RevCommit c : walk) {
^
symbol: class RevCommit
location: class Main
Main.java:111: error: cannot find symbol
List<RevCommit> earlier = encountered.get(abbreviated);
^
symbol: class RevCommit
location: class Main
Main.java:118: error: cannot find symbol
for (RevCommit other : earlier) {
^
symbol: class RevCommit
location: class Main
Main.java:121: error: cannot find symbol
throw new MavenExecutionException(summarize(c) + " clashes with " + summarize(other) + " as they would both be identified as " + thisCount + "." + abbreviated, (Throwable) null);
^
symbol: class MavenExecutionException
location: class Main
Main.java:131: error: cannot find symbol
} catch (IOException | GitAPIException x) {
^
symbol: class GitAPIException
location: class Main
Main.java:132: error: cannot find symbol
throw new MavenExecutionException("Git operations failed", x);
^
symbol: class MavenExecutionException
location: class Main
Main.java:187: error: cannot find symbol
try (RevWalk walk2 = new RevWalk(walk.getObjectReader())) {
^
symbol: class RevWalk
location: class Main
Main.java:187: error: cannot find symbol
try (RevWalk walk2 = new RevWalk(walk.getObjectReader())) {
^
symbol: class RevWalk
location: class Main
Main.java:189: error: cannot find symbol
for (RevCommit c2 : walk2) {
^
symbol: class RevCommit
location: class Main
Main.java:196: error: method does not override or implement a method from a supertype
@Override
^
Main.java:201: error: cannot find symbol
for (MavenProject project : session.getProjects()) {
^
symbol: class MavenProject
location: class Main
50 errors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment