{"id":18430701,"url":"https://github.com/kompiro/notification-maven-plugin","last_synced_at":"2025-08-01T00:32:58.881Z","repository":{"id":4262301,"uuid":"5389257","full_name":"kompiro/notification-maven-plugin","owner":"kompiro","description":"This plugin makes to notify build result to user.","archived":false,"fork":false,"pushed_at":"2020-10-13T06:39:05.000Z","size":363,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-16T09:15:22.645Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://kompiro.github.com/notification-maven-plugin","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kompiro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"licenses/fatcow.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-08-12T15:04:38.000Z","updated_at":"2016-05-25T15:43:23.000Z","dependencies_parsed_at":"2022-09-16T17:40:31.763Z","dependency_job_id":null,"html_url":"https://github.com/kompiro/notification-maven-plugin","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kompiro%2Fnotification-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kompiro%2Fnotification-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kompiro%2Fnotification-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kompiro%2Fnotification-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kompiro","download_url":"https://codeload.github.com/kompiro/notification-maven-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248794566,"owners_count":21162613,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-06T05:22:01.800Z","updated_at":"2025-04-13T22:45:26.640Z","avatar_url":"https://github.com/kompiro.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"Build Result Notifier Maven Plugin\n===================================\n\nThis plugin makes to notify build result by maven.\n\n![Notification](https://raw.github.com/kompiro/notification-maven-plugin/master/src/site/resources/images/notification.png)\n\nHow to use it?\n---------------\n\nAdd plugin repository to pom.xml\n\n    \u003cpluginRepositories\u003e\n      \u003cpluginRepository\u003e\n        \u003cid\u003ekompiro.org\u003c/id\u003e\n        \u003curl\u003ehttp://kompiro.org/maven/\u003c/url\u003e\n        \u003creleases\u003e\n          \u003cenabled\u003etrue\u003c/enabled\u003e\n        \u003c/releases\u003e\n        \u003csnapshots\u003e\n          \u003cenabled\u003efalse\u003c/enabled\u003e\n        \u003c/snapshots\u003e\n      \u003c/pluginRepository\u003e\n    \u003c/pluginRepositories\u003e\n\nAdd the plugin to pom.xml's \u003cbuild\u003e\n\n    \u003cbuild\u003e\n      ...\n      \u003cplugins\u003e\n        ...\n        \u003cplugin\u003e\n          \u003cgroupId\u003eorg.kompiro.notification\u003c/groupId\u003e\n          \u003cartifactId\u003enotification-maven-plugin\u003c/artifactId\u003e\n          \u003cversion\u003e0.8.3\u003c/version\u003e\n        \u003c/plugin\u003e\n        ...\n      \u003c/plugins\u003e\n      ...\n    \u003c/build\u003e\n\nAnd run `mvn notification:notify`\n\nTips and Tricks\n------------------\n\nAdd notification goal automatically -\u003e add execution\n\n      \u003cplugins\u003e\n        ...\n        \u003cplugin\u003e\n          \u003cgroupId\u003eorg.kompiro.notification\u003c/groupId\u003e\n          \u003cartifactId\u003enotification-maven-plugin\u003c/artifactId\u003e\n          \u003cversion\u003e0.8.3\u003c/version\u003e\n          \u003cexecutions\u003e\n            \u003cexecution\u003e\n              \u003cid\u003enotification\u003c/id\u003e\n              \u003cphase\u003einitialize\u003c/phase\u003e\n              \u003cgoals\u003e\n                \u003cgoal\u003enotify\u003c/goal\u003e\n              \u003c/goals\u003e\n            \u003c/execution\u003e\n          \u003c/executions\u003e\n        \u003c/plugin\u003e\n        ...\n      \u003c/plugins\u003e\n\nIf you'd like to use growl, set \u003cconfiguration/\u003e\n\n      \u003cplugins\u003e\n        ...\n        \u003cplugin\u003e\n          \u003cgroupId\u003eorg.kompiro.notification\u003c/groupId\u003e\n          \u003cartifactId\u003enotification-maven-plugin\u003c/artifactId\u003e\n          \u003cversion\u003e0.8.3\u003c/version\u003e\n          \u003cconfiguration\u003e\n            \u003cstrategy\u003egrowl\u003c/strategy\u003e\n          \u003c/configuration\u003e\n          \u003cexecutions\u003e\n            \u003cexecution\u003e\n              \u003cid\u003enotification\u003c/id\u003e\n              \u003cphase\u003einitialize\u003c/phase\u003e\n              \u003cgoals\u003e\n                \u003cgoal\u003enotify\u003c/goal\u003e\n              \u003c/goals\u003e\n            \u003c/execution\u003e\n          \u003c/executions\u003e\n        \u003c/plugin\u003e\n        ...\n      \u003c/plugins\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkompiro%2Fnotification-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkompiro%2Fnotification-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkompiro%2Fnotification-maven-plugin/lists"}