cookerplugin.MojoLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cooker-maven-plugin Show documentation
Show all versions of cooker-maven-plugin Show documentation
Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and
concise reporting
package cookerplugin;
import org.apache.maven.plugin.logging.Log;
public class MojoLogger {
private static Log logger;
public static void setLogger(Log log) {
logger = log;
}
public static Log getLogger() {
return logger;
}
}