https://github.com/vicenteneto/jenkins-java-api
A Jenkins API Wrapper for JAVA developers
https://github.com/vicenteneto/jenkins-java-api
api java jenkins
Last synced: 9 months ago
JSON representation
A Jenkins API Wrapper for JAVA developers
- Host: GitHub
- URL: https://github.com/vicenteneto/jenkins-java-api
- Owner: vicenteneto
- License: mit
- Created: 2015-09-24T00:26:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-08T19:40:34.000Z (almost 9 years ago)
- Last Synced: 2025-03-29T04:23:01.544Z (9 months ago)
- Topics: api, java, jenkins
- Language: Java
- Homepage:
- Size: 124 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jenkins Java API Wrapper
[](https://github.com/vicenteneto/jenkins-java-api)
[](https://travis-ci.org/vicenteneto/jenkins-java-api)
[](https://github.com/vicenteneto/jenkins-java-api/blob/master/LICENSE)
This project is a Java library for communicating with [Jenkins](https://github.com/jenkinsci/jenkins/). Jenkins is a cross-platform, continuous integration and continuous delivery application that increases your productivity ([see more](https://wiki.jenkins-ci.org/display/JENKINS/Meet+Jenkins)).
## Table of contents
* [Getting started](#getting-started)
* [Contributing](#contributing)
* [Creator](#creator)
* [Copyright and license](#copyright-and-license)
## Getting started
#### Maven
To use it in your Maven build add it to your **pom.xml** file:
```xml
jitpack.io
https://jitpack.io
```
and:
```xml
com.github.vicenteneto
jenkins-java-api
v1.15.23
```
#### Gradle
To use it in your Gradle build add it to your **gradle.build** file:
```gradle
repositories {
maven { url "https://jitpack.io" }
}
```
and:
```gradle
dependencies {
compile 'com.github.vicenteneto:jenkins-java-api:v1.15.23'
}
```
[Check out our examples](https://github.com/vicenteneto/jenkins-java-api/blob/master/docs/examples.md)
Take note that our master branch is our active, unstable development branch and that if you're looking to download a stable copy of the repo, check the [tagged downloads](https://github.com/vicenteneto/jenkins-java-api/tags).
## Contributing
Have a bug or a feature request? [Please, open a GitHub issue](https://github.com/vicenteneto/jenkins-java-api/issues/new).
## Creator
**Vicente Neto**
*
## Copyright and license
Copyright 2015-, Vicente Neto. This project is licensed under the [MIT License](https://github.com/vicenteneto/jenkins-java-api/blob/master/LICENSE).