I am using a project that is configured using the jenkins bom.
Some artifacts are missing so I attempted to configure the Jenkins Remote Repository in my settings.xml
<mirror>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/releases/</url>
<mirrorOf>*,!repo.jenkins-ci.org,!incrementals</mirrorOf>
</mirror>
This causes another error which is why I am getting in contact now.
$ mvn test
[INFO] Artifact io.jenkins.tools.incrementals:git-changelist-maven-extension:pom:1.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases+snapshots), repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases)]
[INFO] Artifact io.jenkins.tools.incrementals:git-changelist-maven-extension:pom:1.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases+snapshots), repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases)]
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/releases/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.3/git-changelist-maven-extension-1.3.pom
[WARNING] The POM for io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 is missing, no dependency information available
[INFO] Artifact io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases+snapshots), repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases)]
[INFO] Artifact io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases+snapshots), repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/, default, releases)]
Downloading from repo.jenkins-ci.org: https://repo.jenkins-ci.org/releases/io/jenkins/tools/incrementals/git-changelist-maven-extension/1.3/git-changelist-maven-extension-1.3.jar
[ERROR] Error executing Maven.
[ERROR] Extension io.jenkins.tools.incrementals:git-changelist-maven-extension:1.3 or one of its dependencies could not be resolved: The following artifacts could not be resolved: io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 (present, but unavailable): Could not find artifact io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 in repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/)
[ERROR] Caused by: The following artifacts could not be resolved: io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 (present, but unavailable): Could not find artifact io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 in repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/)
[ERROR] Caused by: Could not find artifact io.jenkins.tools.incrementals:git-changelist-maven-extension:jar:1.3 in repo.jenkins-ci.org (https://repo.jenkins-ci.org/releases/)
Is there some explanation for this. My expectation is is the releases repo will contain everything I would need. Have I gone wrong somewhere ?