commons-lang v2.x Api

Build Status Contributors Jenkins Plugin GitHub release Jenkins Plugin Installs

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 commons-lang

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>
    

Change Log

Version 2.6_0 (Feb TBC, 2022)

  • First release
  • Looks at breaking plugin dependencies upon core jenkins, as discussed [PR#6267] and Jenkins Core update by [PR#6270].