I am looking for several Jenkins client frameworks for working with the Jenkins server. I found a nice and updated Jenkins client server API called RisingOak / jenkins-client
Communication with Jenkins Server
JenkinsServer jenkins = new JenkinsServer(new URI("http://localhost:8080/jenkins"), "admin", "password")
I have several projects in Jenkins, so I want to get a list of tasks for each project using the Jenkings client, for example, in the left list of Jenkings servers.
If any families with RisingOak / jenkins-client or any other APIs please let me know how to achieve this.

source
share