In order to keep this plugin up to date, we need to update it's declared dependencies. You can review the documentation at the link above for a general overview of this process.
Update the Jenkins core BOM:
mvn versions:update-parent
Update the plugin BOM (see Jenkins bom/releases) to the latest version in the <dependencyManagement> section of pom.xml (at this time, the latest is 2081.v85885a_d2e5c5):
We have a fixed dependency on org.jenkins-ci.plugins:aws-java-sdk that should be updated. Check the Jenkins AWS SDK Plugin releases page to find the latest version (1.12.447-382.vda_68e2007233 at this time). Update this in the <dependencies> section if a new version has been released.
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>LATEST VERSION GOES HERE</version>
<optional>true</optional>
</dependency>
Test your changes and address any issues (esp. Maven Enforcer or SpotBugs issues that may arise from updates)
This issue reserved for Fidelity Open Source Workshop
https://www.jenkins.io/doc/developer/plugin-development/dependency-management/
In order to keep this plugin up to date, we need to update it's declared dependencies. You can review the documentation at the link above for a general overview of this process.
Update the Jenkins core BOM:
Update the plugin BOM (see Jenkins bom/releases) to the latest version in the
<dependencyManagement>
section of pom.xml (at this time, the latest is 2081.v85885a_d2e5c5):We have a fixed dependency on
org.jenkins-ci.plugins:aws-java-sdk
that should be updated. Check the Jenkins AWS SDK Plugin releases page to find the latest version (1.12.447-382.vda_68e2007233 at this time). Update this in the<dependencies>
section if a new version has been released.Test your changes and address any issues (esp. Maven Enforcer or SpotBugs issues that may arise from updates)