{"id":15334631,"url":"https://github.com/chonton/yaml-maven-plugin","last_synced_at":"2026-01-25T08:32:49.526Z","repository":{"id":167403122,"uuid":"643022080","full_name":"chonton/yaml-maven-plugin","owner":"chonton","description":"Write yaml files from maven properties","archived":false,"fork":false,"pushed_at":"2024-01-04T19:34:35.000Z","size":55,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-27T07:48:03.212Z","etag":null,"topics":["maven","yaml"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chonton.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":"2023-05-19T22:29:05.000Z","updated_at":"2023-05-19T22:30:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"e1ae3179-f95c-437c-b8ff-cbe194aff6d7","html_url":"https://github.com/chonton/yaml-maven-plugin","commit_stats":null,"previous_names":["chonton/yaml-maven-plugin"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/chonton/yaml-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fyaml-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fyaml-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fyaml-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fyaml-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chonton","download_url":"https://codeload.github.com/chonton/yaml-maven-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fyaml-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28749367,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T08:31:04.260Z","status":"ssl_error","status_checked_at":"2026-01-25T08:30:28.859Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["maven","yaml"],"created_at":"2024-10-01T10:08:17.103Z","updated_at":"2026-01-25T08:32:49.511Z","avatar_url":"https://github.com/chonton.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# yaml-maven-plugin\n\nWrite yaml file.\n\n# Plugin\n\nPlugin reports available at [plugin info](https://chonton.github.io/yaml-maven-plugin/plugin-info.html).\n\nThere is a single goal: [write](https://chonton.github.io/yaml-maven-plugin/write-mojo.html),\nwhich by default binds to the **generate-resources** phase. This goal writes the values specified in the configuration\ninto a yaml file at the filename location.\n\n## Configuration\n\n| Parameter | CmdLine  Property | Description                         |\n|----------:|:-----------------:|:------------------------------------|\n|  filename |   yaml.filename   | Filename to write yaml              |\n|      path |         -         | Dot separated path to prefix values |\n|      yaml |         -         | Map of values to write              |                                                                                          |\n|      skip |     yaml.skip     | Skip writing yaml                   |\n\n# Examples\n\n## Typical Use\n\n```xml\n\n\u003cbuild\u003e\n  \u003cpluginManagement\u003e\n    \u003cplugins\u003e\n      \u003cplugin\u003e\n        \u003cgroupId\u003eorg.honton.chas\u003c/groupId\u003e\n        \u003cartifactId\u003eyaml-maven-plugin\u003c/artifactId\u003e\n        \u003cversion\u003e0.0.1\u003c/version\u003e\n      \u003c/plugin\u003e\n    \u003c/plugins\u003e\n  \u003c/pluginManagement\u003e\n\n  \u003cplugins\u003e\n    \u003cplugin\u003e\n      \u003cgroupId\u003eorg.honton.chas\u003c/groupId\u003e\n      \u003cartifactId\u003eyaml-maven-plugin\u003c/artifactId\u003e\n      \u003cexecutions\u003e\n        \u003cexecution\u003e\n          \u003cgoals\u003e\n            \u003cgoal\u003ewrite\u003c/goal\u003e\n          \u003c/goals\u003e\n        \u003c/execution\u003e\n      \u003c/executions\u003e\n      \u003cconfiguration\u003e\n        \u003cfilename\u003ehelm/env.yaml\u003c/filename\u003e\n        \u003cprefix\u003epipeline\u003c/prefix\u003e\n        \u003cvalues\u003e\n          \u003cappVersion\u003e${project.version}\u003c/appVersion\u003e\n          \u003cenvironment\u003edevelopment\u003c/environment\u003e\n          \u003cnamespace\u003e${group.namespace}\u003c/namespace\u003e\n          \u003cregion\u003eus-east-2\u003c/region\u003e\n          \u003ctheatre\u003eus\u003c/theatre\u003e\n        \u003c/values\u003e\n      \u003c/configuration\u003e\n    \u003c/plugin\u003e\n  \u003c/plugins\u003e\n\u003c/build\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchonton%2Fyaml-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchonton%2Fyaml-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchonton%2Fyaml-maven-plugin/lists"}