{"id":15338224,"url":"https://github.com/khmarbaise/echo-maven-plugin","last_synced_at":"2025-04-14T23:35:29.197Z","repository":{"id":2152413,"uuid":"3097531","full_name":"khmarbaise/echo-maven-plugin","owner":"khmarbaise","description":"Maven Echo Plugin","archived":false,"fork":false,"pushed_at":"2022-02-06T18:51:23.000Z","size":1253,"stargazers_count":9,"open_issues_count":6,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T11:39:45.856Z","etag":null,"topics":["java","maven","maven-plugin"],"latest_commit_sha":null,"homepage":"https://khmarbaise.github.io/echo-maven-plugin/","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/khmarbaise.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-01-03T21:39:40.000Z","updated_at":"2024-09-20T21:31:33.000Z","dependencies_parsed_at":"2022-09-06T01:40:41.073Z","dependency_job_id":null,"html_url":"https://github.com/khmarbaise/echo-maven-plugin","commit_stats":null,"previous_names":["khmarbaise/maven-echo-plugin"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khmarbaise%2Fecho-maven-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khmarbaise%2Fecho-maven-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khmarbaise%2Fecho-maven-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khmarbaise%2Fecho-maven-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khmarbaise","download_url":"https://codeload.github.com/khmarbaise/echo-maven-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248980612,"owners_count":21193135,"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":["java","maven","maven-plugin"],"created_at":"2024-10-01T10:24:37.025Z","updated_at":"2025-04-14T23:35:29.164Z","avatar_url":"https://github.com/khmarbaise.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Echo Maven Plugin\n\n[![Apache License, Version 2.0, January 2004][shield-license]][apache-license]\n[![Maven Central][shield-central]][central-search]\n[![JDKBuilds](https://github.com/khmarbaise/echo-maven-plugin/workflows/JDKBuilds/badge.svg)][jdkbuilds]\n[![Main](https://github.com/khmarbaise/echo-maven-plugin/workflows/Main/badge.svg)][mainbuilds]\n[![Site](https://github.com/khmarbaise/echo-maven-plugin/workflows/SitePublishing/badge.svg)][published-site]\n\n# Overview\n\nIf you are working with Maven it sometimes happens that you come to the point\nwhere you get the feeling to print out some kind of message during the build.\nBut how can you do that? Some people think a second time and came to the \nMaven-AntRun-Plugin and use some ant task. But why does not exist\na simple small plugin which can simply print out some kind of messages.\n\nExactly for such situations the Echo Maven Plugin is intended.\n\n\n## License\n\n[Apache License, Version 2.0, January 2004](http://www.apache.org/licenses/)\n\n## Issue Tracker\n\n[The Issue Tracker](https://github.com/khmarbaise/echo-maven-plugin/issues)\n\n## Usage\n\nThe first and simplest usage is to configure the Echo Maven Plugin\n\n    \u003cplugin\u003e\n      \u003cgroupId\u003ecom.soebes.maven.plugins\u003c/groupId\u003e\n      \u003cartifactId\u003eecho-maven-plugin\u003c/artifactId\u003e\n      \u003cversion\u003e0.3.0\u003c/version\u003e\n      \u003cexecutions\u003e\n        \u003cexecution\u003e\n          \u003cphase\u003einitialize\u003c/phase\u003e\n          \u003cgoals\u003e\n            \u003cgoal\u003eecho\u003c/goal\u003e\n          \u003c/goals\u003e\n        \u003c/execution\u003e\n      \u003c/executions\u003e\n      \u003cconfiguration\u003e\n        \u003cechos\u003e\n          \u003cecho\u003eThis is the Text which will be printed out.\u003c/echo\u003e\n        \u003c/echos\u003e\n      \u003c/configuration\u003e\n    \u003c/plugin\u003e\n\n\n## Hint\n\n  Starting with version 0.2 of the maven-echo-plugin has been\n  renamed to `echo-maven-plugin` according to the [Apache Maven Trademarks](https://maven.apache.org/guides/plugin/guide-java-plugin-development.html).\n\n## Ideas\n\nFormat goal:\n\n    \u003cplugin\u003e\n      \u003cgroupId\u003ecom.soebes.maven.plugins\u003c/groupId\u003e\n      \u003cartifactId\u003eecho-maven-plugin\u003c/artifactId\u003e\n      \u003cversion\u003e0.3\u003c/version\u003e\n      \u003cexecutions\u003e\n        \u003cexecution\u003e\n          \u003cphase\u003einitialize\u003c/phase\u003e\n          \u003cgoals\u003e\n            \u003cgoal\u003eformat\u003c/goal\u003e\n          \u003c/goals\u003e\n        \u003c/execution\u003e\n      \u003c/executions\u003e\n      \u003cconfiguration\u003e\n      \t\u003cformat\u003e%05d\u003c/format\u003e\n      \t\u003cinteger\u003e200\u003c/integer\u003e\n      \u003c/configuration\u003e\n    \u003c/plugin\u003e\n\nMultiple formats\n\n      \u003cconfiguration\u003e\n      \t\u003cformats\u003e\n      \t\t\u003cformat\u003e%03s\u003c/format\u003e\n      \t\t\u003cformat\u003e%03s\u003c/format\u003e\n      \t\t\u003cformat\u003e%03s\u003c/format\u003e\n      \t\u003c/formats\u003e\n      \t\u003cintegers\u003e\n      \t\t\u003cinteger\u003e1\u003c/integer\u003e\n      \t\t\u003cinteger\u003e2\u003c/integer\u003e\n      \t\t\u003cinteger\u003e3\u003c/integer\u003e\n      \t\u003c/integers\u003e\n      \u003c/configuration\u003e\n\n\n## Settings Configuration\n\nIf you like you can configure an appropriate plugin group in your\n`settings.xml` file to make life a little bit easier.\n\n    \u003csettings\u003e\n      ...\n      \u003cpluginGroups\u003e\n        \u003cpluginGroup\u003ecom.soebes.maven.plugins\u003c/pluginGroup\u003e\n      \u003c/pluginGroups\u003e\n      ...\n    \u003c/settings\u003e\n\n[maven-central]: http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.soebes.maven.plugins%22%20a%3A%22echo-maven-plugin%22\n[build-status]: https://travis-ci.org/khmarbaise/echo-maven-plugin.svg?branch=master\n[shield-central]: https://img.shields.io/maven-central/v/com.soebes.maven.plugins/echo-maven-plugin.svg?label=Maven%20Central\n[shield-license]: https://img.shields.io/github/license/khmarbaise/echo-maven-plugin.svg?label=License\n[apache-license]: https://www.apache.org/licenses/\n[jdkbuilds]: https://github.com/khmarbaise/echo-maven-plugin/actions?query=workflow%3AJDKBuilds\n[mainbuilds]: https://github.com/khmarbaise/echo-maven-plugin/actions?query=workflow%3AMain\n[published-site]: https://khmarbaise.github.io/echo-maven-plugin/\n[central-search]: https://search.maven.org/search?q=%22com.soebes.maven.plugins%22%20AND%20a:%22echo-maven-plugin%22\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhmarbaise%2Fecho-maven-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhmarbaise%2Fecho-maven-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhmarbaise%2Fecho-maven-plugin/lists"}