Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ekryd/echo-maven-plugin
A maven plugin that lets you output text during Maven build
https://github.com/ekryd/echo-maven-plugin
echo hacktoberfest java maven maven-plugin output print
Last synced: 1 day ago
JSON representation
A maven plugin that lets you output text during Maven build
- Host: GitHub
- URL: https://github.com/ekryd/echo-maven-plugin
- Owner: Ekryd
- License: bsd-3-clause
- Created: 2015-03-13T06:45:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T13:40:34.000Z (7 months ago)
- Last Synced: 2024-05-02T02:35:24.192Z (7 months ago)
- Topics: echo, hacktoberfest, java, maven, maven-plugin, output, print
- Language: Java
- Homepage:
- Size: 533 KB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Echo Maven Plugin ![Icon](https://raw.githubusercontent.com/Ekryd/echo-maven-plugin/master/misc/echo.png)
[![Build Status](https://circleci.com/gh/Ekryd/echo-maven-plugin.svg?style=svg)](https://app.circleci.com/pipelines/github/Ekryd/echo-maven-plugin)
[![Coverage Status](https://coveralls.io/repos/github/Ekryd/echo-maven-plugin/badge.svg?branch=master)](https://coveralls.io/github/Ekryd/echo-maven-plugin?branch=master)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ekryd.echo-maven-plugin/echo-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.ekryd.echo-maven-plugin/echo-maven-plugin)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.github.ekryd.echo-maven-plugin%3Aecho-plugin&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.github.ekryd.echo-maven-plugin%3Aecho-plugin)A maven plugin that lets you output text during Maven build
It can be used with a file:
```xml
com.github.ekryd.echo-maven-plugin
echo-maven-plugin
2.0.0
false
welcome
echo
misc/welcome.txt
```
Or with a string directly (note that Maven properties can be used):
```xml
com.github.ekryd.echo-maven-plugin
echo-maven-plugin
2.0.0
false
end
echo
install
${line.separator} To run the plugin directly:${line.separator} mvn ${project.groupId}:${project.artifactId}:${project.version}:sort${line.separator}
```See more in the [Cookbook](https://github.com/Ekryd/echo-maven-plugin/wiki/Cookbook)