An open API service indexing awesome lists of open source software.

https://github.com/jenkinsci/commons-text-api-plugin

Jenkins API plugin providing org.apache.commons:commons-text
https://github.com/jenkinsci/commons-text-api-plugin

jenkins-api-plugin jenkins-plugin

Last synced: 8 months ago
JSON representation

Jenkins API plugin providing org.apache.commons:commons-text

Awesome Lists containing this project

README

          

commons-text-api Plugin
===================

[![Build Status](https://ci.jenkins.io/job/Plugins/job/commons-text-api-plugin/job/main/badge/icon)](https://ci.jenkins.io/job/Plugins/job/commons-text-api-plugin/job/main/)
[![Contributors](https://img.shields.io/github/contributors/jenkinsci/commons-text-api-plugin.svg)](https://github.com/jenkinsci/commons-text-api-plugin/graphs/contributors)
[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/commons-text-api.svg)](https://plugins.jenkins.io/commons-text-api)
[![GitHub release](https://img.shields.io/github/v/tag/jenkinsci/commons-text-api-plugin?label=changelog)](https://github.com/jenkinsci/commons-text-api-plugin/blob/main/CHANGELOG.md)
[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/commons-text-api.svg?color=blue)](https://plugins.jenkins.io/commons-text-api)

This plugin provides [Apache Commons Text v1.x](https://commons.apache.org/proper/commons-text/) 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:
```

...

org.apache.commons
commons-text
1.9

...

```
* After:
```

...

io.jenkins.plugins
commons-text-api
1.9-v{latest-release}

...

```