com.github.fabienbarbero.plugins.mkdocs.AbstractMkdocsMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mkdocs-maven-plugin Show documentation
Show all versions of mkdocs-maven-plugin Show documentation
A maven plugin to compile mkdocs documentation
The newest version!
/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
package com.github.fabienbarbero.plugins.mkdocs;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugins.annotations.Parameter;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
/**
* @author Fabien Barbero
*/
public abstract class AbstractMkdocsMojo
extends AbstractMojo {
@Parameter( name = "configFile" )
protected File configFile;
protected void dumpLogs( Process process )
throws IOException
{
BufferedReader reader = new BufferedReader( new InputStreamReader( process.getInputStream() ) );
String log;
while ( ( log = reader.readLine() ) != null ) {
getLog().info( log );
}
reader = new BufferedReader( new InputStreamReader( process.getErrorStream() ) );
while ( ( log = reader.readLine() ) != null ) {
getLog().info( log );
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy