com.iwillfailyou.MavenUi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iwillfailyou-maven-plugin Show documentation
Show all versions of iwillfailyou-maven-plugin Show documentation
Iwillfailyou - is the plugin for failing not elegant projects
package com.iwillfailyou;
import com.iwillfailyou.plugin.Ui;
import org.apache.maven.plugin.logging.Log;
public final class MavenUi implements Ui {
private final Log log;
public MavenUi(final Log log) {
this.log = log;
}
@Override
public void println(final String text) {
log.warn(text);
}
}