ASCII banner Maven plugin

Displays a customizable message after building projects

Лицензия

Лицензия

Категории

Категории

Maven Компиляция и сборка
Группа

Группа

pet.orca
Идентификатор

Идентификатор

ascii-banner-maven-plugin
Последняя версия

Последняя версия

1.0
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

ASCII banner Maven plugin
Displays a customizable message after building projects
Ссылка на сайт

Ссылка на сайт

https://github.com/socram8888/ascii-banner-maven-plugin
Система контроля версий

Система контроля версий

https://github.com/socram8888/ascii-banner-maven-plugin

Скачать ascii-banner-maven-plugin

Как подключить последнюю версию

<plugin>
    <groupId>pet.orca</groupId>
    <artifactId>ascii-banner-maven-plugin</artifactId>
    <version>1.0</version>
</plugin>

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.apache.maven : maven-core jar 3.6.0
org.apache.maven : maven-plugin-api jar 3.6.0
org.apache.maven.plugin-tools : maven-plugin-annotations Необязательный jar 3.6.0

provided (1)

Идентификатор библиотеки Тип Версия
org.projectlombok : lombok jar 1.18.4

Модули Проекта

Данный проект не имеет модулей.

ascii-banner-maven-plugin

This is a Maven plugin whose job is to display a success or failure banner depending on the project build result.

Success screenshot

Usage

To use this plugin, you need to add a new Mojo to the pom.xml:

<project>
	...
	<build>
		...
		<plugins>
			...
			<plugin>
				<groupId>pet.orca</groupId>
				<artifactId>ascii-banner-maven-plugin</artifactId>
				<version>1.0</version>
				<executions>
					<execution>
						<id>banner-setup</id>
						<goals>
							<goal>setup</goal>
						</goals>
						<configuration>
							<!--
								These parameters are all optional.
								You may want to specify only a file or only a message,
								and only print on success or on failure.
							-->
							<success>
								<message>Message to print on success, if any</message>
								<file>${project.basedir}/success.txt</file>
							</success>
							<failure>
								<message>Message to print on failure, if any</message>
								<file>${project.basedir}/failure.txt</file>
							</failure>
						</configuration>
					</execution>
				</executions>
			</plugin>
			...
		</plugins>
		...
	</build>
	...
</project>

Where to get the images from?

I have another related project called ASCIImages where you can find some black-and-white and RGB images for printing on terminals, along with automated tools for building them.

Failure image

Версии библиотеки

Версия
1.0