https://github.com/jc21/juxtapose-jenkins-plugin
Provides Jenkins notification with Juxtapose installations.
https://github.com/jc21/juxtapose-jenkins-plugin
Last synced: 2 months ago
JSON representation
Provides Jenkins notification with Juxtapose installations.
- Host: GitHub
- URL: https://github.com/jc21/juxtapose-jenkins-plugin
- Owner: jc21
- Created: 2018-06-04T06:31:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-15T05:16:23.000Z (over 2 years ago)
- Last Synced: 2025-01-25T10:41:14.668Z (4 months ago)
- Language: Java
- Homepage: https://github.com/jc21/juxtapose
- Size: 37.1 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Juxtapose plugin for Jenkins
Provides Jenkins notification with [Juxtapose](https://github.com/jc21/juxtapose) installations.
## Install Instructions
1. Download the latest release hpi file
2. Configure your Jenkins installation, Manage Plugins
3. Install this plugin on your Jenkins server using the Advanced tab
4. Configure Jenkings Global settings to add your Juxtapose endpoint URLFrom here you can add to your Job's post build actions or use the pipeline steps below.
Technically this plugin could be used with any http endpoint that accepts a JSON POST payload.
## Jenkins Pipeline Support
Includes [Jenkins Pipeline](https://github.com/jenkinsci/workflow-plugin)
support:```
juxtapose event: 'success'
juxtapose event: 'failure'
juxtapose event: 'aborted'
juxtapose event: 'unstable'
juxtapose event: 'regression'
juxtapose event: 'changed'
juxtapose event: 'fixed'
```Additionally you can pass a endpoint url as part of the step:
```
juxtapose event: 'success', url: 'https://your-juxtapose....'
```