All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.md2conf.maven.plugin.ConPubMojo Maven / Gradle / Ivy

The newest version!
package io.github.md2conf.maven.plugin;

import io.github.md2conf.command.ConpubCommand;
import org.apache.maven.plugins.annotations.Mojo;

@Mojo(name = "conpub")
public class ConPubMojo extends AbstractMd2ConfMojo{
    @Override
    public void execute() {
        if (this.skip) {
            getLog().info("md2conf plugin conpub skipped ('skip' is enabled)");
            return;
        }
        ConpubCommand.conpub(getMd2WikiConvertOptions(), getIndexerOptions(), getConfluenceOptions(), getPublishOptions(), getTitleProcessingOptions());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy