Coder Social home page Coder Social logo

jenkins-x / updatebot Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fabric8-updatebot/updatebot

40.0 4.0 22.0 811 KB

a simple bot for updating dependencies in source code and automatically generating Pull Requests in downstream projects

License: Apache License 2.0

Java 99.99% Shell 0.01%

updatebot's Introduction

UpdateBot

A bot for updating dependencies on your projects automatically

Javadocs Maven Central Apache 2

Golang rewrite available

NOTE if you are interested in a small binary you can use on the command line, in a container image, CI tool or GitHub Action you might like the jx-upgradebot project

Configuration

UpdateBot takes a simple YAML file to define which git repositories and github organisations to search for repositories to update.

See an example UpdateBot YAML file

Using UpdateBot

Jenkins Pipelines

A good place to use UpdateBot is in your Continuous Delivery pipelines when you've just created a release, tagged the source code and have waited for the artifacts to be in maven central or your nexus/artifactory; then you want to push those new versions into your downstream projects via Pull Requests.

To do that please use the UpdateBot Jenkins Plugin or checkout the UpdateBot Jenkins Plugin documentation.

Essentially once you have installed the UpdateBot Jenkins Plugin into your Jeknins you just use the updateBotPush() step in your pipeline like this:

node {

    stage('Release') { 
        git 'https://github.com/jstrachan-testing/updatebot-npm-sample.git'

        // TODO do the actual release first...
        
        // TODO wait for the release to be in maven central or npm or whatever...
    }

    stage('UpdateBot') {
        // now lets update any dependent projects with this new release
        // using the local file system as the tagged source code with versions
        updateBotPush()
    }
}

Command Line

The updatebot jar file is a fat executable jar so you can use:

java -jar updatebot-${version}.jar

But the jar is also a unix binary so you can just run the following:

./updatebot-${version}.jar

To install on a unix operating system just copy the updatebot-${version).jar to file called updatebot on your PATH

Kinds of update

There are different kinds of updates that UpdateBot can do. Lets walk through the kinds of updates you might want to do...

Pushing

When you release an artifact its good practice to eagerly update all of the projects that use your artifact to use the new version via a Pull Request. Using a Pull Request means that this version change will trigger any Continuous Integration tests to validate the version change which also gives good feedback upstream to your project. It also lets downstream projects review and approve any version change.

To push versions from a repository just run the push command passing in the git clone URL or a local directory that contains a git clone.

updatebot push --repo https://github.com/foo/bar.git 

You can specify a particular git commit reference (sha, branch, tag) via --ref

updatebot push --repo https://github.com/foo/bar.git --ref 1.2.3

This will then grab the source code for that repository and update its version in the downstream dependent projects.

When doing a CD pipeline you will typically have the git repository cloned locally already so you can just point to a local clone:

updatebot push --dir /foo/bar

Or specifying the tag as well:

updatebot push --dir /foo/bar  --tag 1.2.3

Pushing other dependency versions

Often projects have other dependencies such as shared libraries or packages. e.g. an npm project may have dependencies on angular packages.

You may want to use a single project as your exemplar project so that it defines a set of dependency versions; so that if they change in one repository then updatebot will replicate those changes into other repositories.

To push other versions from a repository we use the push object below, then we include language/framework specific dependency set definitions. In the case of npm we can specify lists of includes or excludes dependencies for dependencies, devDependencies or peerDependencies. You can use * too for a wildcard to make this YAML more DRY.

e.g. here's an example updatebot.yml file that sets up a repo called ngx-base as the exemplar project for all of its dependencies:

github:
  organisations:
  - name: jstrachan-testing
    repositories:
    - name: ngx-base
      push:
        npm:
          dependencies:
            includes:
            - "*"
          devDependencies:
            includes:
            - "*"
    - name: ngx-widgets

Then when we run this command:

updatebot push --repo https://github.com/jstrachan-testing/ngx-base

updatebot will look at all of those matching dependencies in the ngx-base/package.json and if they are different to the downstream dependencies it will generate a Pull Request.

e.g. here's an example generated Pull Request on the ngx-widgets project where it generated a single commit to update all the changed versions

Pushing specific versions

Sometimes you just want to upgrade a specific version through your projects. To do this use the push-version command:

updatebot push-version -k npm myapp 1.2.3

This will then iterate through all the projects defined by the configuration file you give it and generate the necessary code changes to adopt the new version and submit pull requests.

Pulling

We recommend pushing version changes eagerly in your CI / CD pipelines.

However projects often depend on lots of dependencies that are released upstream by different teams. So to pull version changes from upstream releases you can use the pull command:

updatebot push -k npm 

This will then update any dependencies in your projects.

Requirements

UpdateBot requires the following binaries to be available on your PATH

  • java
  • git

Node

To be able to pull version changes into your npm packages we use the ncu CLI tool. You can install it via these instructions or typing

npm install -g npm-check-updates

Docker

If you want to use UpdateBot inside a docker image you can reuse the fabric8/maven-builder image

updatebot's People

Contributors

ascheman avatar cagiti avatar garethjevans avatar igdianov avatar jenkins-x-bot avatar jenkins-x-bot-test avatar jstrachan avatar rawlingsj avatar rfvermut avatar ryandawsonuk avatar salaboy avatar vbehar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

updatebot's Issues

option to skip checking pr status and just attempt to merge it

We've got a set up with a lot of repos and downstream repos can use deps from multiple upstream deps. We want to run tests and use them to set github pull request status on each repo. But if updatebot has to wait for github status requires a set of tests to be run, then our builds can take a long time, especially if a change is made to a repo that is at the top of the chain of upstream repos.

Currently updatebot will wait for each PR to be good before it merges. It has previously been suggested to allow the user to override this. Now giving that suggestion a dedicated issue and implementing under the PR below. Also included the option for updatebot to automatically delete branches for the PRs that it closes

Extend push-version with option to override downstream git branch

A feature request

Extend push-version with an option that supports override of target branch names. Example --target-branch=<branch-name>. From the technical POV, the target-branch sets the value used as base input in https://developer.github.com/v3/pulls/#create-a-pull-request

Rationale: assume a service having upstream library dependencies like this:

Library: model
    |
    V
Library: make
    |
    V
Service: cars

There are situations when a new features hit all of the code above, creating non-backwards compatibility. The standard tool in the toolbox is git branching.

Issue

As of today there is no suppoprt in Updatebot to push a version change to a downstream base branch other than master. The code indicates a possibility to configure another branch in the .updatebot YAML file but even so, it will not fly. We need to set it dynamically.

Example:

A change in Library: model inside branch feature-dropfossilfuel will create a PR to Library: make, which will have master as the "base" branch. Consequences:

  • There is no clear path to make Service: cars dependant on the PR in Library: make.
  • Accepting the PR in Library: make will merge changes into master. This will "pollute" the master with the breaking change and there is still no clear path on how to push this downstream to branch feature-dropfossilfuel of Service: cars

Proposed solution

With a flag such as --target-branch=<branch-name> we can put code like this (Java Maven example) in the build step for the libraries:

sh "jx step git credentials"
sh "echo \$(jx-release-version)-$BRANCH_NAME > VERSION"
sh "mvn clean versions:set -DnewVersion=\$(cat VERSION)"
sh "mvn deploy"
sh "git commit -a -m \"feature \$(cat VERSION)\""
sh "git tag -fa v\$(cat VERSION) -m \"feature version \$(cat VERSION)\""
sh "git push origin v\$(cat VERSION)"

sh 'updatebot push-version --kind maven --target-branch=\$BRANCH_NAME com.example:model \$(cat VERSION)'

We simply assume that if the library is within a feature branch then it WILL push changes to a downstream repo with the same feature name. We'll then end up with this build flow (assuming changes in Library: model):

Library: model (feature-dropfossilfuel)
    |
    | artifact com.example:model:1.2.3-feature-dropfossilfuel -> Nexus
    V
Library: make (PR against feature-dropfossilfuel)
    |
    | Accept PR via update-loop in bild job of Library: model
    V
Library: make (feature-dropfossilfuel, referencing com.example:model:1.2.3-feature-dropfossilfuel)
    |
    | artifact com.example:make:4.12.7-feature-dropfossilfuel -> Nexus
    V
Service: cars (PR against feature-dropfossilfuel, referencing com.example:model:1.2.3-feature-dropfossilfuel)
    |
    | Accept PR via update-loop in bild job of Library: make
    V
Service: cars (feature-dropfossilfuel, referencing com.example:make:4.12.7-feature-dropfossilfuel)

Bonus feature 1

Would be great if Updatebot creates the branch in the downstream repo if not already present. The alternative is some informative failure message.

Bonus feature 2

When working in a feature there can be considerable gains in build time and resources by skipping the Pull Request step and merge with downstream feature branch right away. The PR approach makes a lot of sense when using the master branch as base. But for development of libraries in a feature we're quite happy trading the GitOps flow for build speed. Let's assume the flag --skip-pr=true. We can then apply this when building libraries:

sh 'updatebot push-version --kind maven --skip-pr=true --target-branch=\$BRANCH_NAME com.example:model \$(cat VERSION)'

The resulting build flow (assuming changes in model):

Library: model (feature-dropfossilfuel)
    |
    | artifact com.example:model:1.2.3-feature-dropfossilfuel -> Nexus
    V
Library: make (feature-dropfossilfuel, referencing com.example:model:1.2.3-feature-dropfossilfuel)
    |
    | artifact com.example:make:4.12.7-feature-dropfossilfuel -> Nexus
    V
Service: cars (feature-dropfossilfuel, referencing com.example:make:4.12.7-feature-dropfossilfuel)

And... if you already have a nifty solution to the issue above - please spread some lights to us in the dark!

Updatebot does not add label

I have added the following config to my updatebot step: --github-pr-label approved. I expect it to add the approved label to the PR.

Updatebot does add this following update --github-pr-label to approved (#15) as a comment, but the label isn't added.

race condition in update-loop on deleting branches when two repos both pushing to same downstream at same time

Failed: org.kohsuke.github.GHFileNotFoundException: {"message":"Reference does not exist","documentation_url":"https://developer.github.com/v3/git/refs/#delete-a-reference"}
org.kohsuke.github.GHFileNotFoundException: {"message":"Reference does not exist","documentation_url":"https://developer.github.com/v3/git/refs/#delete-a-reference"}
at org.kohsuke.github.Requester.handleApiError(Requester.java:691)
at org.kohsuke.github.Requester._to(Requester.java:298)
at org.kohsuke.github.Requester.to(Requester.java:239)
at org.kohsuke.github.Requester.to(Requester.java:227)
at org.kohsuke.github.GHRef.delete(GHRef.java:67)
at io.jenkins.updatebot.github.GitHubHelpers.deleteUpdateBotBranches(GitHubHelpers.java:130)
at io.jenkins.updatebot.commands.UpdatePullRequests.run(UpdatePullRequests.java:161)
at io.jenkins.updatebot.commands.CommandSupport.run(CommandSupport.java:124)
at io.jenkins.updatebot.commands.UpdatePullRequestLoop.run(UpdatePullRequestLoop.java:72)
at io.jenkins.updatebot.UpdateBot.run(UpdateBot.java:159)
at io.jenkins.updatebot.UpdateBot.main(UpdateBot.java:64)

Should be able to solve this by making sure each updatebot only deletes the branches that it itself merged

Use default branch instead of master when no branch specified

Currently we have an .updatebot.yml as follows:

  organisations:
  - name: myorg
    includes:
    - demo-*
    excludes:
    - *-WIP

We are using develop as default branch in every repository demo-*. When updatebot clones them, it uses develop as the default branch, but when it performs the command push-regex -r [search_regex] -v replace_value files, it always changes to master in every repository before replacing with the value.

It would be great to use the default branch when there is no a github.organisations.repositories.branch: develop in .updatebot.yml.

pushing assumes downstream repos are master branch

We're trying to push a change from an upstream to downstream repos. We had some changes to artifacts including some renaming and noticed that the changes were detected but no PR was generated. So I downloaded the updatebot jar file and ran the same command locally and found that it was checking out the master branch of the downstream repos in the .updatebot-repos directory.

This seems to be hardcoded in the updatebot code. When debugging I see the code hit

and there's no representation of branch in the internal model of a git repo (https://github.com/jenkins-x/updatebot/blob/79f690626e6e98c776785b16d76625905df986fc/updatebot-core/src/main/java/io/jenkins/updatebot/model/GitRepository.java). I don't see any parameter for branch and the .updatebot.yml lets us set a name and cloneUrl but not a branch to checkout.

pushing to multiple downstream repos with outstanding prs unreliable

We've a repo that is configured with two downstream repos:

https://github.com/Activiti/activiti-build/blob/d8b38e553eb4f746383e82d36b1c4e55af8ee04b/.updatebot.yml

And we push to them from a jx maven-build-pod using updatebot push and updatebot update:

https://github.com/Activiti/activiti-build/blob/d8b38e553eb4f746383e82d36b1c4e55af8ee04b/Jenkinsfile#L57

So both downstream repos should get update prs whenever a build runs successfully. Instead this happens at best only sometimes. It seems to work when there are no existing, open updatebot-generated PRs on the downstream repos but if there are any open prs then it becomes unreliable.

Most often only one downstream repo is updated. For example, AlfrescoArchive/activiti-api@79c6d86 updated one of the downstream repos to 7.0.11. But the open PR on the other remained on the prior version (7.0.10) at the time of that same run Activiti/Activiti#2012

The log from the job shows no errors. Actually it even shows:

[main] INFO io.jenkins.updatebot.commands.PushSourceChanges - push source changes from Activiti/activiti-build to Activiti/Activiti changes found: org.activiti.build:activiti-dependency-check => 7.0.11, org.activiti.build:activiti-parent => 7.0.11
[main] INFO io.jenkins.updatebot.kind.maven.PomUpdateStatus - Updating ././.updatebot-repos/github/activiti/Activiti/pom.xml

Which would suggest that it did find the change to push to the Activiti downstream repo, even though the pr on this repo did not get updated.

The full log relating to this updatebot run:

[viti_activiti-build_develop-I27QS4EKTY65ECQDZ4GLIMLO5IOUZXSEPN7V6QTXFELETX5S3HOQ] Running shell script
+ updatebot push
Picked up _JAVA_OPTIONS: -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Dsun.zip.disableMemoryMapping=true -XX:+UseParallelGC -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Xms10m -Xmx192m
[main] INFO io.jenkins.updatebot.git.GitHelper - Loaded 2 git credentials from /home/jenkins/git/credentials
[main] INFO io.jenkins.updatebot.commands.PushSourceChanges - Loaded from git credentials
[main] INFO io.jenkins.updatebot.repository.Repositories - Cloning: Activiti/activiti-api to .updatebot-repos/github/activiti/activiti-api
[main] INFO io.jenkins.updatebot.git.GitPluginCLI - Cloning into 'activiti-api'...
[main] WARN io.jenkins.updatebot.git.GitPluginCLI - No email available for GitHub login!
[main] INFO io.jenkins.updatebot.repository.Repositories - Cloning: Activiti/Activiti to .updatebot-repos/github/activiti/Activiti
[main] INFO io.jenkins.updatebot.git.GitPluginCLI - Cloning into 'Activiti'...
[main] WARN io.jenkins.updatebot.git.GitPluginCLI - No email available for GitHub login!
[main] INFO io.jenkins.updatebot.commands.ModifyFilesCommandSupport - Checkout branch: develop from Activiti/activiti-api in .updatebot-repos/github/activiti/activiti-api
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Scanning for projects...
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Reactor Build Order:
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: Parent                                                 [pom]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: OWASP dependency-check configuration                   [pom]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-maven-plugin/1.1.21/updatebot-maven-plugin-1.1.21.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-maven-plugin/1.1.21/updatebot-maven-plugin-1.1.21.pom (4.9 kB at 4.8 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/parent/1.1.21/parent-1.1.21.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/parent/1.1.21/parent-1.1.21.pom (9.4 kB at 99 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 328 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-project-bom-with-platform-deps/2.3.7/fabric8-project-bom-with-platform-deps-2.3.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-project-bom-with-platform-deps/2.3.7/fabric8-project-bom-with-platform-deps-2.3.7.pom (56 kB at 678 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-maven-plugin/1.1.21/updatebot-maven-plugin-1.1.21.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-maven-plugin/1.1.21/updatebot-maven-plugin-1.1.21.jar (32 kB at 367 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] -----------------< org.activiti.build:activiti-parent >-----------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Building Activiti :: Parent 7.0.11                                 [1/2]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] --------------------------------[ pom ]---------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] --- updatebot-maven-plugin:1.1.21:export (default-cli) @ activiti-parent ---
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-core/1.1.21/updatebot-core-1.1.21.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-core/1.1.21/updatebot-core-1.1.21.pom (5.7 kB at 66 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.72/jcommander-1.72.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.72/jcommander-1.72.pom (1.2 kB at 16 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-utils/2.3.7/fabric8-utils-2.3.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-utils/2.3.7/fabric8-utils-2.3.7.pom (1.9 kB at 99 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/components/2.3.7/components-2.3.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/components/2.3.7/components-2.3.7.pom (3.3 kB at 40 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-parent/2.3.7/fabric8-parent-2.3.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-parent/2.3.7/fabric8-parent-2.3.7.pom (16 kB at 834 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-project/2.3.7/fabric8-project-2.3.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-project/2.3.7/fabric8-project-2.3.7.pom (89 kB at 2.6 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/camel/camel-parent/2.19.1/camel-parent-2.19.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/camel/camel-parent/2.19.1/camel-parent-2.19.1.pom (205 kB at 1.8 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/camel/camel/2.19.1/camel-2.19.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/camel/camel/2.19.1/camel-2.19.1.pom (29 kB at 343 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from jenkins: http://repo.jenkins-ci.org/releases/org/optaplanner/optaplanner-bom/6.5.0.Final/optaplanner-bom-6.5.0.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/optaplanner/optaplanner-bom/6.5.0.Final/optaplanner-bom-6.5.0.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/optaplanner/optaplanner-bom/6.5.0.Final/optaplanner-bom-6.5.0.Final.pom (10 kB at 43 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from jenkins: http://repo.jenkins-ci.org/releases/org/kie/kie-parent-metadata/6.5.0.Final/kie-parent-metadata-6.5.0.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kie/kie-parent-metadata/6.5.0.Final/kie-parent-metadata-6.5.0.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/kie/kie-parent-metadata/6.5.0.Final/kie-parent-metadata-6.5.0.Final.pom (48 kB at 82 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from jenkins: http://repo.jenkins-ci.org/releases/org/jboss/integration-platform/jboss-integration-platform-parent/6.0.8.Final/jboss-integration-platform-parent-6.0.8.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/integration-platform/jboss-integration-platform-parent/6.0.8.Final/jboss-integration-platform-parent-6.0.8.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/integration-platform/jboss-integration-platform-parent/6.0.8.Final/jboss-integration-platform-parent-6.0.8.Final.pom (26 kB at 82 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from jenkins: http://repo.jenkins-ci.org/releases/org/jboss/jboss-parent/19/jboss-parent-19.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/jboss-parent/19/jboss-parent-19.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/jboss-parent/19/jboss-parent-19.pom (32 kB at 125 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/4.3.9.RELEASE/spring-framework-bom-4.3.9.RELEASE.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/4.3.9.RELEASE/spring-framework-bom-4.3.9.RELEASE.pom (5.1 kB at 255 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.2/shrinkwrap-resolver-bom-2.2.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.2/shrinkwrap-resolver-bom-2.2.2.pom (5.3 kB at 189 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.12.Final/arquillian-bom-1.1.12.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.12.Final/arquillian-bom-1.1.12.Final.pom (11 kB at 559 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from jenkins: http://repo.jenkins-ci.org/releases/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.6/shrinkwrap-bom-1.2.6.pom (4.0 kB at 18 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from jenkins: http://repo.jenkins-ci.org/releases/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.4/shrinkwrap-resolver-bom-2.2.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.4/shrinkwrap-resolver-bom-2.2.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.4/shrinkwrap-resolver-bom-2.2.4.pom (5.3 kB at 25 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from jenkins: http://repo.jenkins-ci.org/releases/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-10/shrinkwrap-descriptors-bom-2.0.0-alpha-10.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-10/shrinkwrap-descriptors-bom-2.0.0-alpha-10.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from repo.jenkins-ci.org: https://repo.jenkins-ci.org/public/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-10/shrinkwrap-descriptors-bom-2.0.0-alpha-10.pom (5.2 kB at 24 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.12/slf4j-api-1.7.12.pom (2.7 kB at 157 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.12/slf4j-parent-1.7.12.pom (12 kB at 624 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.4/jackson-core-2.7.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.4/jackson-core-2.7.4.pom (5.1 kB at 281 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.7/jackson-parent-2.7.pom (8.1 kB at 509 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/25/oss-parent-25.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/25/oss-parent-25.pom (19 kB at 353 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 240 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 795 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/kohsuke/github-api/1.92/github-api-1.92.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/kohsuke/github-api/1.92/github-api-1.92.pom (6.5 kB at 92 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/kohsuke/pom/17/pom-17.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/kohsuke/pom/17/pom-17.pom (5.8 kB at 325 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.7/commons-codec-1.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.7/commons-codec-1.7.pom (10 kB at 574 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/26/commons-parent-26.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/26/commons-parent-26.pom (48 kB at 2.5 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.2/jackson-databind-2.9.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.2/jackson-databind-2.9.2.pom (5.9 kB at 345 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.2/jackson-base-2.9.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.2/jackson-base-2.9.2.pom (5.6 kB at 329 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.2/jackson-bom-2.9.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.2/jackson-bom-2.9.2.pom (12 kB at 768 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1/jackson-parent-2.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1/jackson-parent-2.9.1.pom (8.0 kB at 472 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/30/oss-parent-30.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/30/oss-parent-30.pom (21 kB at 1.3 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom (1.9 kB at 121 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom (7.8 kB at 489 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom (20 kB at 953 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.2/jackson-core-2.9.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.2/jackson-core-2.9.2.pom (3.4 kB at 58 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.pom (13 kB at 774 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/7/commons-parent-7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/7/commons-parent-7.pom (17 kB at 921 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.1/jackson-dataformat-yaml-2.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.1/jackson-dataformat-yaml-2.9.1.pom (2.1 kB at 132 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.9.1/jackson-dataformats-text-2.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.9.1/jackson-dataformats-text-2.9.1.pom (2.6 kB at 159 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.1/jackson-bom-2.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.1/jackson-bom-2.9.1.pom (12 kB at 717 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.18/snakeyaml-1.18.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.18/snakeyaml-1.18.pom (31 kB at 1.4 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.1/jackson-core-2.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.1/jackson-core-2.9.1.pom (6.1 kB at 78 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.1/jackson-databind-2.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.1/jackson-databind-2.9.1.pom (6.8 kB at 398 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.1/jackson-annotations-2.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.1/jackson-annotations-2.9.1.pom (2.6 kB at 144 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.pom (1.0 kB at 13 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.16/jansi-1.16.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.16/jansi-1.16.pom (3.4 kB at 200 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi-project/1.16/jansi-project-1.16.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi-project/1.16/jansi-project-1.16.pom (10 kB at 593 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.11/fusesource-pom-1.11.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/fusesource-pom/1.11/fusesource-pom-1.11.pom (15 kB at 221 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.0.0.RELEASE/spring-core-5.0.0.RELEASE.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.0.0.RELEASE/spring-core-5.0.0.RELEASE.pom (4.0 kB at 192 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Bismuth-RELEASE/reactor-bom-Bismuth-RELEASE.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Bismuth-RELEASE/reactor-bom-Bismuth-RELEASE.pom (3.6 kB at 201 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.15.Final/netty-bom-4.1.15.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.15.Final/netty-bom-4.1.15.Final.pom (7.9 kB at 439 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.0.0.RELEASE/spring-jcl-5.0.0.RELEASE.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.0.0.RELEASE/spring-jcl-5.0.0.RELEASE.pom (1.9 kB at 113 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/de/pdark/decentxml/1.4/decentxml-1.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/de/pdark/decentxml/1.4/decentxml-1.4.pom (9.5 kB at 123 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-client/3.1.10/kubernetes-client-3.1.10.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-client/3.1.10/kubernetes-client-3.1.10.pom (9.1 kB at 504 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-client-project/3.1.10/kubernetes-client-project-3.1.10.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-client-project/3.1.10/kubernetes-client-project-3.1.10.pom (14 kB at 753 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-model/1.1.4/kubernetes-model-1.1.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-model/1.1.4/kubernetes-model-1.1.4.pom (7.0 kB at 389 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-model-generator/1.1.4/kubernetes-model-generator-1.1.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-model-generator/1.1.4/kubernetes-model-generator-1.1.4.pom (14 kB at 777 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.7.5/jackson-module-jaxb-annotations-2.7.5.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.7.5/jackson-module-jaxb-annotations-2.7.5.pom (3.6 kB at 64 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.5/jackson-core-2.7.5.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.5/jackson-core-2.7.5.pom (5.1 kB at 316 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.7.0/jackson-annotations-2.7.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.7.0/jackson-annotations-2.7.0.pom (1.5 kB at 97 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.5/jackson-databind-2.7.5.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.5/jackson-databind-2.7.5.pom (5.2 kB at 324 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom (7.9 kB at 491 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.9.1/okhttp-3.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.9.1/okhttp-3.9.1.pom (1.7 kB at 113 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.9.1/parent-3.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/parent/3.9.1/parent-3.9.1.pom (18 kB at 553 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.13.0/okio-1.13.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.13.0/okio-1.13.0.pom (1.6 kB at 109 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.13.0/okio-parent-1.13.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio-parent/1.13.0/okio-parent-1.13.0.pom (4.8 kB at 322 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/logging-interceptor/3.9.1/logging-interceptor-3.9.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/logging-interceptor/3.9.1/logging-interceptor-3.9.1.pom (1.4 kB at 87 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.13/slf4j-api-1.7.13.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.13/slf4j-api-1.7.13.pom (2.8 kB at 111 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.13/slf4j-parent-1.7.13.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.13/slf4j-parent-1.7.13.pom (13 kB at 841 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.13/jul-to-slf4j-1.7.13.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.13/jul-to-slf4j-1.7.13.pom (986 B at 58 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.7.7/jackson-dataformat-yaml-2.7.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.7.7/jackson-dataformat-yaml-2.7.7.pom (7.2 kB at 218 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.7/jackson-core-2.7.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.7.7/jackson-core-2.7.7.pom (5.1 kB at 298 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.15/snakeyaml-1.15.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.15/snakeyaml-1.15.pom (26 kB at 1.5 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.7/jackson-databind-2.7.7.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.7.7/jackson-databind-2.7.7.pom (5.2 kB at 305 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.pom (14 kB at 175 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.3.2/jackson-databind-2.3.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.3.2/jackson-databind-2.3.2.pom (5.9 kB at 370 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/12/oss-parent-12.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/12/oss-parent-12.pom (23 kB at 296 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.3.0/jackson-annotations-2.3.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.3.0/jackson-annotations-2.3.0.pom (1.3 kB at 81 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/11/oss-parent-11.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/11/oss-parent-11.pom (23 kB at 301 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.3.2/jackson-core-2.3.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.3.2/jackson-core-2.3.2.pom (6.0 kB at 351 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/mifmif/generex/1.0.1/generex-1.0.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/mifmif/generex/1.0.1/generex-1.0.1.pom (11 kB at 460 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/dk/brics/automaton/automaton/1.11-8/automaton-1.11-8.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dk/brics/automaton/automaton/1.11-8/automaton-1.11-8.pom (1.1 kB at 67 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom (2.7 kB at 179 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom (24 kB at 1.4 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom (4.0 kB at 252 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom (22 kB at 453 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom (63 kB at 708 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom (2.1 kB at 133 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom (4.2 kB at 261 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom (14 kB at 858 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom (6.3 kB at 369 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/26/weld-parent-26.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/26/weld-parent-26.pom (32 kB at 1.7 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/el/javax.el-api/2.2.5/javax.el-api-2.2.5.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/el/javax.el-api/2.2.5/javax.el-api-2.2.5.pom (11 kB at 159 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 294 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/interceptor/javax.interceptor-api/1.2/javax.interceptor-api-1.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/interceptor/javax.interceptor-api/1.2/javax.interceptor-api-1.2.pom (13 kB at 834 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 299 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 41 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom (2.6 kB at 154 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom (14 kB at 847 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 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 457 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom (8.3 kB at 488 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom (1.8 kB at 92 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom (2.6 kB at 164 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom (1.7 kB at 103 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom (1.5 kB at 96 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom (3.1 kB at 180 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom (1.9 kB at 111 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom (3.1 kB at 174 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom (5.7 kB at 354 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom (7.7 kB at 512 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom (4.0 kB at 252 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom (1.8 kB at 115 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom (29 kB at 1.4 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom (2.0 kB at 110 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom (2.1 kB at 133 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom (3.4 kB at 198 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom (11 kB at 128 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom (15 kB at 646 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 154 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 8.4 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 407 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 489 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.pom (3.8 kB at 128 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom (2.2 kB at 130 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom (1.9 kB at 82 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-core/1.1.21/updatebot-core-1.1.21.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.72/jcommander-1.72.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-utils/2.3.7/fabric8-utils-2.3.7.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/kohsuke/github-api/1.92/github-api-1.92.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.72/jcommander-1.72.jar (69 kB at 218 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.7/commons-codec-1.7.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar (41 kB at 83 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.7/commons-codec-1.7.jar (260 kB at 506 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.1/jackson-dataformat-yaml-2.9.1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/fabric8-utils/2.3.7/fabric8-utils-2.3.7.jar (143 kB at 275 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.jar (109 kB at 184 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.1/jackson-core-2.9.1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.18/snakeyaml-1.18.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.1/jackson-dataformat-yaml-2.9.1.jar (40 kB at 66 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.1/jackson-databind-2.9.1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/kohsuke/github-api/1.92/github-api-1.92.jar (341 kB at 557 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.1/jackson-annotations-2.9.1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/jenkins/updatebot/updatebot-core/1.1.21/updatebot-core-1.1.21.jar (213 kB at 344 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.1/jackson-annotations-2.9.1.jar (67 kB at 96 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-simple/1.7.25/slf4j-simple-1.7.25.jar (15 kB at 22 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.0.0.RELEASE/spring-core-5.0.0.RELEASE.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.16/jansi-1.16.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.1/jackson-core-2.9.1.jar (321 kB at 450 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.0.0.RELEASE/spring-jcl-5.0.0.RELEASE.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.18/snakeyaml-1.18.jar (284 kB at 397 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/de/pdark/decentxml/1.4/decentxml-1.4.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/fusesource/jansi/jansi/1.16/jansi-1.16.jar (256 kB at 314 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-client/3.1.10/kubernetes-client-3.1.10.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.0.0.RELEASE/spring-jcl-5.0.0.RELEASE.jar (16 kB at 19 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-model/1.1.4/kubernetes-model-1.1.4.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/de/pdark/decentxml/1.4/decentxml-1.4.jar (131 kB at 147 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.7.5/jackson-module-jaxb-annotations-2.7.5.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.7.5/jackson-module-jaxb-annotations-2.7.5.jar (35 kB at 35 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar (64 kB at 58 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.9.1/okhttp-3.9.1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-client/3.1.10/kubernetes-client-3.1.10.jar (440 kB at 395 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.13.0/okio-1.13.0.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okio/okio/1.13.0/okio-1.13.0.jar (82 kB at 63 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/logging-interceptor/3.9.1/logging-interceptor-3.9.1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.1/jackson-databind-2.9.1.jar (1.3 MB at 1.0 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.13/jul-to-slf4j-1.7.13.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/logging-interceptor/3.9.1/logging-interceptor-3.9.1.jar (8.3 kB at 5.9 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.13/jul-to-slf4j-1.7.13.jar (4.6 kB at 3.3 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/mifmif/generex/1.0.1/generex-1.0.1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/squareup/okhttp3/okhttp/3.9.1/okhttp-3.9.1.jar (406 kB at 288 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/dk/brics/automaton/automaton/1.11-8/automaton-1.11-8.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.0.0.RELEASE/spring-core-5.0.0.RELEASE.jar (1.2 MB at 850 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar (36 kB at 24 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/mifmif/generex/1.0.1/generex-1.0.1.jar (14 kB at 9.3 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar (47 kB at 31 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/el/javax.el-api/2.2.5/javax.el-api-2.2.5.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/dk/brics/automaton/automaton/1.11-8/automaton-1.11-8.jar (176 kB at 110 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/interceptor/javax.interceptor-api/1.2/javax.interceptor-api-1.2.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.jar (71 kB at 44 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/el/javax.el-api/2.2.5/javax.el-api-2.2.5.jar (39 kB at 24 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/interceptor/javax.interceptor-api/1.2/javax.interceptor-api-1.2.jar (24 kB at 14 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar (205 kB at 120 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar (44 kB at 24 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar (43 kB at 23 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar (378 kB at 200 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar (15 kB at 7.8 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar (27 kB at 14 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar (67 kB at 34 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar (31 kB at 14 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar (177 kB at 80 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar (638 kB at 278 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar (136 kB at 59 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar (173 kB at 75 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar (147 kB at 61 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 1.0 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 1.8 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar (62 kB at 25 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar (53 kB at 21 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar (164 kB at 63 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar (424 kB at 158 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar (55 kB at 20 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar (435 kB at 155 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12.jar
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar (33 kB at 12 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.jar (290 kB at 101 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.12/junit-4.12.jar (315 kB at 108 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.jar (2.3 MB at 749 kB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/fabric8/kubernetes-model/1.1.4/kubernetes-model-1.1.4.jar (6.2 MB at 1.9 MB/s)
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Generated updatebot version file /home/jenkins/workspace/viti_activiti-build_develop-I27QS4EKTY65ECQDZ4GLIMLO5IOUZXSEPN7V6QTXFELETX5S3HOQ/target/updatebot-versions.yaml
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Reactor Summary:
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: Parent 7.0.11 .......................... SUCCESS [ 13.205 s]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: OWASP dependency-check configuration 7.0.11 SKIPPED
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] BUILD SUCCESS
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Total time: 17.388 s
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Finished at: 2018-09-20T15:19:29Z
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] WARN io.jenkins.updatebot.kind.maven.MavenUpdater - Picked up _JAVA_OPTIONS: -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Dsun.zip.disableMemoryMapping=true -XX:+UseParallelGC -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Xms10m -Xmx192m
[main] INFO io.jenkins.updatebot.commands.PushSourceChanges - push source changes from Activiti/activiti-build to Activiti/activiti-api changes found: org.activiti.build:activiti-dependency-check => 7.0.11, org.activiti.build:activiti-parent => 7.0.11
[main] INFO io.jenkins.updatebot.kind.maven.PomUpdateStatus - Updating ././.updatebot-repos/github/activiti/activiti-api/pom.xml
[updatebot-183e515e-2ad5-417c-acb1-745fc5c74705 79c6d86] fix(versions): push Activiti/activiti-build ref: master
 1 file changed, 1 insertion(+), 1 deletion(-)
[main] INFO io.jenkins.updatebot.commands.ModifyFilesCommandSupport - Created pull request https://github.com/Activiti/activiti-api/pull/10
[main] INFO io.jenkins.updatebot.commands.ModifyFilesCommandSupport - Checkout branch: develop from Activiti/Activiti in .updatebot-repos/github/activiti/Activiti
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Scanning for projects...
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Reactor Build Order:
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: Parent                                                 [pom]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: OWASP dependency-check configuration                   [pom]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] -----------------< org.activiti.build:activiti-parent >-----------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Building Activiti :: Parent 7.0.11                                 [1/2]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] --------------------------------[ pom ]---------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] --- updatebot-maven-plugin:1.1.21:export (default-cli) @ activiti-parent ---
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Generated updatebot version file /home/jenkins/workspace/viti_activiti-build_develop-I27QS4EKTY65ECQDZ4GLIMLO5IOUZXSEPN7V6QTXFELETX5S3HOQ/target/updatebot-versions.yaml
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Reactor Summary:
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] 
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: Parent 7.0.11 .......................... SUCCESS [  4.102 s]
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Activiti :: OWASP dependency-check configuration 7.0.11 SKIPPED
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] BUILD SUCCESS
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Total time: 6.009 s
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] Finished at: 2018-09-20T15:19:45Z
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [INFO] ------------------------------------------------------------------------
[main] WARN io.jenkins.updatebot.kind.maven.MavenUpdater - Picked up _JAVA_OPTIONS: -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Dsun.zip.disableMemoryMapping=true -XX:+UseParallelGC -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Xms10m -Xmx192m
[main] INFO io.jenkins.updatebot.commands.PushSourceChanges - push source changes from Activiti/activiti-build to Activiti/Activiti changes found: org.activiti.build:activiti-dependency-check => 7.0.11, org.activiti.build:activiti-parent => 7.0.11
[main] INFO io.jenkins.updatebot.kind.maven.PomUpdateStatus - Updating ././.updatebot-repos/github/activiti/Activiti/pom.xml
[Pipeline] sh
[viti_activiti-build_develop-I27QS4EKTY65ECQDZ4GLIMLO5IOUZXSEPN7V6QTXFELETX5S3HOQ] Running shell script
+ updatebot update
Picked up _JAVA_OPTIONS: -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Dsun.zip.disableMemoryMapping=true -XX:+UseParallelGC -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Xms10m -Xmx192m
[main] INFO io.jenkins.updatebot.git.GitHelper - Loaded 2 git credentials from /home/jenkins/git/credentials
[main] INFO io.jenkins.updatebot.commands.PushSourceChanges - Loaded from git credentials
[main] INFO io.jenkins.updatebot.repository.Repositories - Checkout branch: develop from Activiti/activiti-api in .updatebot-repos/github/activiti/activiti-api
[main] INFO io.jenkins.updatebot.repository.Repositories - Pull branch: develop from Activiti/activiti-api in .updatebot-repos/github/activiti/activiti-api
[main] INFO io.jenkins.updatebot.git.GitPluginCLI - Already up-to-date.
[main] WARN io.jenkins.updatebot.git.GitPluginCLI - No email available for GitHub login!
[main] INFO io.jenkins.updatebot.repository.Repositories - Checkout branch: develop from Activiti/Activiti in .updatebot-repos/github/activiti/Activiti
[main] INFO io.jenkins.updatebot.repository.Repositories - Pull branch: develop from Activiti/Activiti in .updatebot-repos/github/activiti/Activiti
[main] INFO io.jenkins.updatebot.git.GitPluginCLI - Already up-to-date.
[main] WARN io.jenkins.updatebot.git.GitPluginCLI - No email available for GitHub login!

This is on versions:
jx 1.3.290
jenkins x platform 0.0.2454
updatebot 1.1.21

reduce the org scans

it would be good to only scan the repos in each org periodically (e.g. every minute) and reuse that list of orgs on all builds or something like that?

sometimes updatebot merges an open PR without updating it

We've a repo with two downstream repos that we'd like updatebot to push updates to. Sometimes it does and I've raised a separate issue that sometimes it only updates one or the other. But sometimes we see a different behaviour with different logging.

This morning for example the update repo (activiti-build) was built and release 7.0.14 generated. this morning activiti-build ran and updatebot pushed a pr to activiti-api to update it to 7.0.14. When it did so it logged

[main] INFO io.jenkins.updatebot.kind.maven.PomUpdateStatus - Updating ././.updatebot-repos/github/activiti/activiti-api/pom.xml
[updatebot-ac8d0893-689a-4158-ac74-dba662d9501e 191c6fb] fix(versions): push Activiti/activiti-build ref: master
 1 file changed, 1 insertion(+), 1 deletion(-)
[main] INFO io.jenkins.updatebot.commands.ModifyFilesCommandSupport - Created pull request https://github.com/Activiti/activiti-api/pull/12

At the same time it merged a pr on Activiti to update it to 7.0.13. It did not create any pr to update Activiti to 7.0.14. It logged

[main] INFO io.jenkins.updatebot.commands.PushSourceChanges - push source changes from Activiti/activiti-build to Activiti/Activiti changes found: org.activiti.build:activiti-dependency-check => 7.0.14, org.activiti.build:activiti-parent => 7.0.14
[main] INFO io.jenkins.updatebot.kind.maven.PomUpdateStatus - Updating ././.updatebot-repos/github/activiti/Activiti/pom.xml
[main] WARN io.jenkins.updatebot.github.GitHubHelpers - Mergeable flag is still null on pull request https://github.com/Activiti/Activiti/pull/2013 assuming its still mergable. Probably a caching issue and this flag may appear again later

support PRs if files are changed in a Draft build pack?

over time we're gonna be modifying files in draft build packs like:

  • Dockerfile
  • Jenkinsfile
  • helm chart files

It'd be awesome if updatebot could keep track of the version of those files that were copied from a build pack and then if there's a change in a build pack, submit PRs on all projects that were using them.

Its a little tricky - as after a build pack file is imported into a project, it can be modified. But its worth a try. e.g. trying to rebase the commit on the draft pack onto the projects git repo; if it works without conficts - maybe its submitted - if it can't be submitted, maybe submit the PR from the first version and let a human merge or reject the PR?

To implement this we may want some way of knowing, which git repos had what files copied from what build pack - so that updatebot can know what repos to check. So we may need to generate some file inside the projects repo with a list of the files copied in via draft - so that we can update them later.

e.g. maybe draft create could generate some file like, .draftcreated.yml

- repo: github.com/Azure/draft
- files:
  - Dockerfile
  - charts/my-app/templates/deployment.yaml
   ...

default maven plugins are not detected correctly

Default Maven plugins (i.e., with <groupId>org.apache.maven.plugins</groupId>) are not properly detected. The groupId may be omitted. If a pom.xml contains a plugin definition without the default group, it is added a second time to the POM when updatebot-maven-plugin:plugin is called.

Sample POM:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         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>
    <groupId>io.jenkins.updatebot.testcases</groupId>
    <artifactId>testcase-deploy-plugin-exists</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8.2</version>
            </plugin>
        </plugins>
    </build>
</project>

Calling

mvn io.jenkins.updatebot:updatebot-maven-plugin:RELEASE:plugin \
    -Dartifact=maven-deploy-plugin \
    -Dversion=2.8.2

inserts the plugin a second time:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         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>
    <groupId>io.jenkins.updatebot.testcases</groupId>
    <artifactId>testcase-deploy-plugin-exists</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8.2</version>
            </plugin>
        
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.8.2</version></plugin>
    </plugins>
    </build>
</project>

Failed updatebot push command when using MavenUpdater

Running updatebot push command inside Jenkins-X pipeline for a Maven project to push version changes into downstream Maven project causes the following error:

...
[main] WARN io.jenkins.updatebot.support.ProcessHelper - Failed to run command mvn -B io.fabric8.updatebot:updatebot-maven-plugin:1.1.13:export -DdestFile=./target/updatebot-versions.yaml -DupdateBotYaml=.updatebot.yml in . : exit 1
[main] ERROR io.jenkins.updatebot.support.ProcessHelper - Failed to run mvn -B io.fabric8.updatebot:updatebot-maven-plugin:1.1.13:export -DdestFile=./target/updatebot-versions.yaml -DupdateBotYaml=.updatebot.yml
....
[main] INFO io.jenkins.updatebot.kind.maven.MavenUpdater - [ERROR] Plugin io.fabric8.updatebot:updatebot-maven-plugin:1.1.13 or one of its dependencies could not be resolved: Could not find artifact io.fabric8.updatebot:updatebot-maven-plugin:jar:1.1.13 in nexus (http://nexus/repository/maven-group/) -> [Help 1]

Jx version:

$ jx version
NAME               VERSION
jx                 1.3.164
jenkins x platform 0.0.2116
kubernetes cluster v1.10.5-gke.4
kubectl            v1.10.0
helm client        v2.10.0-rc.1+gaa98e7e
helm server        v2.10.0-rc.1+gaa98e7e
git                git version 2.18.0.windows.1

If maven-deploy-plugin is in pomfile of springboot app import doesn't work.

If I have in my pom jx import --branches "develop|PR-.|feature." doesn't work

org.apache.maven.plugins
maven-deploy-plugin
2.8.2

jx version
NAME VERSION
jx 1.3.118
jenkins x platform 0.0.1881
kubernetes cluster v1.9.7-gke.3
kubectl v1.10.3
helm client v2.10.0-rc.1+gaa98e7e
helm server v2.10.0-rc.1+gaa98e7e
git git version 2.15.2 (Apple Git-101.1)
screen shot 2018-07-26 at 3 15 34 pm

Update branches not deleted when PR merged

Not sure if this is a Prow (Tide?) issue or updatebot, but filing here for triage.

Take jenkins-x/jenkins-x-serverless#55 for example. The bot created a branch https://github.com/jenkins-x/jenkins-x-serverless/tree/updatebot-f78b8069-9a60-462e-871a-486764a825e0 and filed a PR from it; then the PR was merged by something (again, Prow? the bot?); but this branch was left in the origin repository. So when I git pull I get

…lots of output…
 * [new branch]      updatebot-c6ac0fcb-6214-4c30-bc9f-37787cfa2ea1 -> origin/updatebot-c6ac0fcb-6214-4c30-bc9f-37787cfa2ea1
 * [new branch]      updatebot-dbc4aa12-def5-4c62-b376-acb8cf3ca3ff -> origin/updatebot-dbc4aa12-def5-4c62-b376-acb8cf3ca3ff
 * [new branch]      updatebot-f78b8069-9a60-462e-871a-486764a825e0 -> origin/updatebot-f78b8069-9a60-462e-871a-486764a825e0
Updating 8fb5380..f414f50
Fast-forward
…

These origin refs are now trash and need to be collected.

UnsupportedOperationException on `jx import`

We have a project with 2.8.2 of the maven deploy plugin:

https://github.com/Activiti/example-runtime-bundle/blob/d10b2bdfde6c816479a14853e8356b2d4de8987c/pom.xml#L21

But if I run mvn io.jenkins.updatebot:updatebot-maven-plugin:RELEASE:plugin -Dartifact=maven-deploy-plugin -Dversion=2.8.2 -X on this project then I get the error:

Failed to execute goal io.jenkins.updatebot:updatebot-maven-plugin:1.1.13:plugin (default-cli) on project example-runtime-bundle: Execution default-cli of goal io.jenkins.updatebot:updatebot-maven-plugin:1.1.13:plugin failed.: UnsupportedOperationException -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.jenkins.updatebot:updatebot-maven-plugin:1.1.13:plugin (default-cli) on project example-runtime-bundle: Execution default-cli of goal io.jenkins.updatebot:updatebot-maven-plugin:1.1.13:plugin failed.
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:154)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:146)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:309)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:194)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:107)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:993)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:345)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:191)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default-cli of goal io.jenkins.updatebot:updatebot-maven-plugin:1.1.13:plugin failed.
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:145)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
... 20 more
Caused by: java.lang.UnsupportedOperationException
at java.util.AbstractMap.put(AbstractMap.java:209)
at io.jenkins.updatebot.kind.maven.PomHelper.updatePluginVersion(PomHelper.java:109)
at io.jenkins.updatebot.kind.maven.PomUpdateStatus.updatePluginVersion(PomUpdateStatus.java:118)
at io.jenkins.updatebot.kind.maven.PomUpdateStatus.updatePluginVersion(PomUpdateStatus.java:114)
at io.fabric8.updatebot.maven.EnsurePluginVersionMojo.execute(EnsurePluginVersionMojo.java:71)

This is causing jx import to fail for us

Support for updating parent section of pom

Looking at https://github.com/jenkins-x/updatebot/blob/bb7459be5ba443bce9f9c71a968143725d45313e/updatebot-core/src/main/java/io/jenkins/updatebot/kind/maven/PomHelper.java it seems the updatebot can currently update the dependencies, plugins and properties of a downstream project's pom.xml file. My impression is that it doesn't update a parent section of a pom file.

We are building https://github.com/ryandawsonuk/activiti-build with the Jenkinsfile and .updatebot.yml there. The updatebot runs without error and logs io.jenkins.updatebot.commands.PushSourceChanges - push source changes from . to ryandawsonuk/Activiti changes found: org.activiti:activiti-parent => 7.0.6 but https://github.com/ryandawsonuk/Activiti/blob/develop/pom.xml doesn't get updated. I am guessing this is because the artifact is used in the parent https://github.com/ryandawsonuk/Activiti/blob/develop/pom.xml#L5

It would also be good to be able to push changes to the dependencyManagement section of a pom. It's not clear to me whether that would be updated or not.

updatebot prs can say 'master' when they've not gone to master

This pr - AlfrescoArchive/ttc-connectors-ranking#5 says updatebot push --ref master in the pr conversation. But it was for develop. This is because it was configured in the .updatebot.yml to go to develop - https://github.com/Activiti/activiti-cloud-dependencies/blob/develop/.updatebot.yml#L5 It seems the messages are out of sync with the actual branch of the pr when using branches in the yml file

Only affects updatebot push and not push-version

support target branch as a label or other custom labels

We find it useful to search for updatebot pull requests by our updatebot user with:

https://github.com/pulls?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+author%3Ajx-activiti-cloud+archived%3Afalse+

Which basically looks like:

image

Now we want updatebot pushing to different release trains, which amounts to different target branches. Unfortunately github doesn't seem to provide any way to filter this by target branch.

It would be great if updatebot could support adding the branch as a label or allowing labels to be specified from the yaml file or as parameters to the command.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.