{"id":15334630,"url":"https://github.com/chonton/properties-maven-plugin","last_synced_at":"2026-02-05T07:01:48.833Z","repository":{"id":48572715,"uuid":"516950392","full_name":"chonton/properties-maven-plugin","owner":"chonton","description":"Maven Plugin to write properties","archived":false,"fork":false,"pushed_at":"2025-07-18T09:21:48.000Z","size":112,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-18T13:07:33.781Z","etag":null,"topics":["defaults","maven-plugin","properties"],"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":"2022-07-23T03:46:31.000Z","updated_at":"2022-11-06T18:32:53.000Z","dependencies_parsed_at":"2025-01-26T16:42:18.916Z","dependency_job_id":null,"html_url":"https://github.com/chonton/properties-maven-plugin","commit_stats":{"total_commits":9,"total_committers":3,"mean_commits":3.0,"dds":"0.33333333333333337","last_synced_commit":"679d6a8e0d648a3ed4be06745059dec47d307eb2"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/chonton/properties-maven-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fproperties-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fproperties-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fproperties-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fproperties-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chonton","download_url":"https://codeload.github.com/chonton/properties-maven-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chonton%2Fproperties-maven-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29114956,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T05:31:32.482Z","status":"ssl_error","status_checked_at":"2026-02-05T05:31:29.075Z","response_time":65,"last_error":"SSL_read: 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":["defaults","maven-plugin","properties"],"created_at":"2024-10-01T10:08:13.610Z","updated_at":"2026-02-05T07:01:48.815Z","avatar_url":"https://github.com/chonton.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# properties-maven-plugin\nWrite properties file.\n\n# Plugin\nPlugin reports available at [plugin info](https://chonton.github.io/properties-maven-plugin/plugin-info.html).\n\nThere is a single goal: [write](https://chonton.github.io/properties-maven-plugin/write-mojo.html),\nwhich by default binds to the \"generate-resources\" phase.  This goal reads properties from the `defaults` location,\nadds properties specified in the configuration, and writes a properties file at the `filename` location.  The properties\nfile will contain lines of form `key`=`value`.  No character escaping or line folding will occur.\n\n## Configuration\n| Parameter  | Property                | Default                                | Description                  |\n|------------|-------------------------|----------------------------------------|------------------------------|\n| comment    | ${properties.comment}   |                                        | Comment added to properties  |\n| defaults   | ${properties.defaults}  | Relative to ${project.build.directory} | Filename to read defaults    |\n| filename   | ${properties.filename}  | Relative to ${project.build.directory} | Filename to write properties |\n| properties |                         |                                        | Properties to write          |                                                                                          |\n| skip       | ${properties.skip}      | false                                  | Skip writing properties      |\n\n# Examples\n\n## Typical Use\n```xml\n  \u003cbuild\u003e\n    \u003cpluginManagement\u003e\n        \u003cplugins\u003e\n          \u003cplugin\u003e\n            \u003cgroupId\u003eorg.honton.chas\u003c/groupId\u003e\n            \u003cartifactId\u003eproperties-maven-plugin\u003c/artifactId\u003e\n            \u003cversion\u003e0.0.2\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\u003eproperties-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          \u003cdefaults\u003e../target/env/properties\u003c/defaults\u003e\n          \u003cfilename\u003edocker/env.properties\u003c/filename\u003e\n          \u003cproperties\u003e\n            \u003cpwd\u003e/home/myself\u003c/pwd\u003e\n            \u003cuser\u003eramesh\u003c/user\u003e\n          \u003c/properties\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%2Fproperties-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchonton%2Fproperties-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchonton%2Fproperties-maven-plugin/lists"}