This plugin provides Commons Lang v2.x to Jenkins Plugins.
Version will be "<commons-lang version>_<plugin version>", so clear what upstream dependency it is offering and plugin can be patch by "plugin version" if required.
Replace the dependency to commons-lang:commons-lang with the dependency to commons-lang-api.
- Before:
<dependencies> ... <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> ... </dependencies> - After:
<dependencies> ... <dependency> <groupId>io.jenkins.plugins</groupId> <artifactId>commons-lang-api</artifactId> <version>2.6_0</version> </dependency> ... </dependencies>