com.bazaarvoice.maven.plugin.s3repo.util.LogStreamConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3repo-maven-plugin Show documentation
Show all versions of s3repo-maven-plugin Show documentation
Create or update an S3 YUM repository.
package com.bazaarvoice.maven.plugin.s3repo.util;
import org.apache.maven.plugin.logging.Log;
import org.codehaus.plexus.util.cli.StreamConsumer;
/**
* Simply logs the stream output as a warning
*/
public final class LogStreamConsumer implements StreamConsumer {
private final Log _log;
public LogStreamConsumer(Log log) {
_log = log;
}
@Override
public void consumeLine(String line) {
_log.warn(line);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy