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
- Host: GitHub
- URL: https://github.com/jenkinsci/commons-text-api-plugin
- Owner: jenkinsci
- License: apache-2.0
- Created: 2022-06-03T07:49:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-28T03:22:57.000Z (over 1 year ago)
- Last Synced: 2025-01-28T04:24:34.060Z (over 1 year ago)
- Topics: jenkins-api-plugin, jenkins-plugin
- Homepage: https://plugins.jenkins.io/commons-text-api/
- Size: 96.7 KB
- Stars: 2
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
commons-text-api Plugin
===================
[](https://ci.jenkins.io/job/Plugins/job/commons-text-api-plugin/job/main/)
[](https://github.com/jenkinsci/commons-text-api-plugin/graphs/contributors)
[](https://plugins.jenkins.io/commons-text-api)
[](https://github.com/jenkinsci/commons-text-api-plugin/blob/main/CHANGELOG.md)
[](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}
...
```