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.
How to introduce to your plugin
Plugins directly depending on httpclient
Replace the dependency to org.apache.httpcomponents:httpclient
with the dependency to apache-httpcomponents-client-4-api
.
- Before:
<dependencies> ... <dependency> <groupId>commons-lang</groupId> <artifactId>commons-</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>