commons-text API

Build Status Contributors Jenkins Plugin GitHub release Jenkins Plugin Installs

This plugin provides Apache Commons Text v1.x to Jenkins Plugins.

Version will be "<commons-text 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-text

Replace the dependency to org.apache.commons:commons-text with the dependency to commons-text-api.

  • Before:
    <dependencies>
      ...
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-text</artifactId>
        <version>1.9</version>
      </dependency>
      ...
    </dependencies>
    
  • After:
    <dependencies>
      ...
      <dependency>
        <groupId>io.jenkins.plugins</groupId>
        <artifactId>commons-text-api</artifactId>
        <version>1.9-v{latest-release}</version>
      </dependency>
      ...
    </dependencies>