{"id":46034094,"url":"https://github.com/kaizen-inc/postman-gradle-plugin","last_synced_at":"2026-03-01T04:32:30.290Z","repository":{"id":236689954,"uuid":"778882975","full_name":"kaizen-inc/postman-gradle-plugin","owner":"kaizen-inc","description":"A Gradle plugin to run postman collections","archived":false,"fork":false,"pushed_at":"2024-06-13T17:50:39.000Z","size":92,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2024-06-13T20:47:15.405Z","etag":null,"topics":["gradle","gradle-plugin","kotlin","newman","newman-runner","postman","postman-collection"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/kaizen-inc.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":"2024-03-28T15:42:12.000Z","updated_at":"2024-06-13T17:50:42.000Z","dependencies_parsed_at":"2024-04-28T07:43:48.036Z","dependency_job_id":"811a55b6-1035-417a-9efb-15c8adac51c8","html_url":"https://github.com/kaizen-inc/postman-gradle-plugin","commit_stats":null,"previous_names":["kaizen-inc/postman-gradle-plugin"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kaizen-inc/postman-gradle-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaizen-inc%2Fpostman-gradle-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaizen-inc%2Fpostman-gradle-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaizen-inc%2Fpostman-gradle-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaizen-inc%2Fpostman-gradle-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaizen-inc","download_url":"https://codeload.github.com/kaizen-inc/postman-gradle-plugin/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaizen-inc%2Fpostman-gradle-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29960253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T01:47:18.291Z","status":"online","status_checked_at":"2026-03-01T02:00:07.437Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["gradle","gradle-plugin","kotlin","newman","newman-runner","postman","postman-collection"],"created_at":"2026-03-01T04:32:29.705Z","updated_at":"2026-03-01T04:32:30.278Z","avatar_url":"https://github.com/kaizen-inc.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# postman-gradle-plugin\n\nA Gradle plugin to run [postman](https://www.postman.com/) collections\n\nThe runner makes use of [newman](https://github.com/postmanlabs/newman) run by [gradle-node-plugin](https://github.com/node-gradle/gradle-node-plugin).\n\n\n#### Usage\n\n```groovy\n        plugins {\n            id \"inc.kaizen.postman\"\n}\n```\npostman collection file is to be configured in gradle script to run.\n\n```groovy\n\n// postmanrunner configuration\npostman {\n    // specifies collection file pattern\n    // default: src/test/**/*.postman_collection.json\n    collection = file(\"./src/test/resources/sample-collection.json\")\n}\n\n```\n\nThat's all needed to execute the postman task:\n`./gradlew runCollection`, you can find the task under postman group\n\n\nAn optional configuration of postman itself is done with the `postman` extension:\n\n```groovy\n\n// postman configuration\npostman {\n    // specifies collection file pattern\n    // default: src/test/**/*.postman_collection.json\n    collection = file(\"./src/test/resources/sample-collection.json\")\n    \n    // specifies the test environment to execute the collections with\n    // default: no environment\n    environment = file('src/test/some_environment.postman_environment.json')\n    \n    // specifies any environment variables to execute the collections with\n    // will override any values from the environment file above\n    // default: no environment variables\n    envVars = [ \"myVar\" : \"myVarValue\" ]\n    \n    // specifies the a global variable file to execute the collections with\n    // default: no globals\n    globals = file('./postman_globals.json')\n\n    // specifies any global variables to execute the collections with\n    // will override any values from the globals file above\n    // default: no global variables\n    globalsVars = [ \"myVar\" : \"myVarValue\" ]\n    \n    // stops entire execution on first failing test in a collection\n    // default: false\n    stopOnError = true\n   \n    // enables/disables ssl verification checks and allows self-signed certificates\n    // default: true\n    secure = false\n}\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaizen-inc%2Fpostman-gradle-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaizen-inc%2Fpostman-gradle-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaizen-inc%2Fpostman-gradle-plugin/lists"}