This project is a Java library for communicating with Jenkins. Jenkins is a cross-platform, continuous integration and continuous delivery application that increases your productivity (see more).
To use it in your Maven build add it to your pom.xml file:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>and:
<dependencies>
<dependency>
<groupId>com.github.vicenteneto</groupId>
<artifactId>jenkins-java-api</artifactId>
<version>v1.15.23</version>
</dependency>
</dependencies>To use it in your Gradle build add it to your gradle.build file:
repositories {
maven { url "https://jitpack.io" }
}and:
dependencies {
compile 'com.github.vicenteneto:jenkins-java-api:v1.15.23'
}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.
Have a bug or a feature request? Please, open a GitHub issue.
Vicente Neto
Copyright 2015-, Vicente Neto. This project is licensed under the MIT License.