This plugin provides Commons Lang v3.x to Jenkins Plugins.
Version will be "<commons-lang version>_<plugin version>", so it is clear what upstream dependency is being offered and so the plugin can be patched by "plugin version" if required.
Replace the dependency to org.apache.commons:commons-lang3
with the dependency to commons-lang3-api
. Avoid version conflicts by using the Jenkins plugin BOM rather than depending on a specific version.
- Before:
<dependencies> ... <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.13.0</version> </dependency> ... </dependencies>
- After:
<dependencies> ... <dependency> <groupId>io.jenkins.plugins</groupId> <artifactId>commons-lang3-api</artifactId> </dependency> ... </dependencies>
For current versions, see GitHub Releases.