{"id":20646420,"url":"https://github.com/vicenteneto/jenkins-java-api","last_synced_at":"2026-02-16T21:33:07.555Z","repository":{"id":150296343,"uuid":"43034854","full_name":"vicenteneto/jenkins-java-api","owner":"vicenteneto","description":"A Jenkins API Wrapper for JAVA developers","archived":false,"fork":false,"pushed_at":"2017-03-08T19:40:34.000Z","size":127,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-01T13:34:49.746Z","etag":null,"topics":["api","java","jenkins"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vicenteneto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-24T00:26:42.000Z","updated_at":"2019-04-16T09:33:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"be2dd9b1-a122-47df-9090-ff7b7fe04d32","html_url":"https://github.com/vicenteneto/jenkins-java-api","commit_stats":null,"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/vicenteneto/jenkins-java-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicenteneto%2Fjenkins-java-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicenteneto%2Fjenkins-java-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicenteneto%2Fjenkins-java-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicenteneto%2Fjenkins-java-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vicenteneto","download_url":"https://codeload.github.com/vicenteneto/jenkins-java-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicenteneto%2Fjenkins-java-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29519379,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T18:37:19.720Z","status":"ssl_error","status_checked_at":"2026-02-16T18:36:46.920Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","java","jenkins"],"created_at":"2024-11-16T16:25:42.054Z","updated_at":"2026-02-16T21:33:07.531Z","avatar_url":"https://github.com/vicenteneto.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jenkins Java API Wrapper\n\n[![GitHub Release](https://img.shields.io/github/release/vicenteneto/jenkins-java-api.svg)](https://github.com/vicenteneto/jenkins-java-api)\n[![Build Status](https://travis-ci.org/vicenteneto/jenkins-java-api.svg?branch=master)](https://travis-ci.org/vicenteneto/jenkins-java-api)\n[![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/vicenteneto/jenkins-java-api/blob/master/LICENSE)\n\nThis 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)).\n\n## Table of contents\n\n* [Getting started](#getting-started)\n* [Contributing](#contributing)\n* [Creator](#creator)\n* [Copyright and license](#copyright-and-license)\n\n## Getting started\n\n#### Maven\nTo use it in your Maven build add it to your **pom.xml** file:\n```xml\n  \u003crepositories\u003e\n    \u003crepository\u003e\n      \u003cid\u003ejitpack.io\u003c/id\u003e\n      \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n  \u003c/repositories\u003e\n```\nand:\n```xml\n  \u003cdependencies\u003e\n    \u003cdependency\u003e\n      \u003cgroupId\u003ecom.github.vicenteneto\u003c/groupId\u003e\n      \u003cartifactId\u003ejenkins-java-api\u003c/artifactId\u003e\n      \u003cversion\u003ev1.15.23\u003c/version\u003e\n    \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n```\n\n#### Gradle\nTo use it in your Gradle build add it to your **gradle.build** file:\n```gradle\nrepositories {\n    maven { url \"https://jitpack.io\" }\n}\n```\nand:\n```gradle\ndependencies {\n    compile 'com.github.vicenteneto:jenkins-java-api:v1.15.23'\n}\n```\n\n[Check out our examples](https://github.com/vicenteneto/jenkins-java-api/blob/master/docs/examples.md)\n\nTake 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).\n\n## Contributing\n\nHave a bug or a feature request? [Please, open a GitHub issue](https://github.com/vicenteneto/jenkins-java-api/issues/new).\n\n## Creator\n\n**Vicente Neto**\n\n* \u003chttps://github.com/vicenteneto\u003e\n\n## Copyright and license\n\nCopyright 2015-, Vicente Neto. This project is licensed under the [MIT License](https://github.com/vicenteneto/jenkins-java-api/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvicenteneto%2Fjenkins-java-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvicenteneto%2Fjenkins-java-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvicenteneto%2Fjenkins-java-api/lists"}