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

com.backbase.oss.boat.GenerateRestTemplateEmbeddedMojo Maven / Gradle / Ivy

There is a newer version: 0.17.37
Show newest version
package com.backbase.oss.boat;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;

/**
 * Generating Client using Spring Rest Template.
 */
@Mojo(name = "generate-rest-template-embedded", threadSafe = true)
public class GenerateRestTemplateEmbeddedMojo extends AbstractGenerateMojo {

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
        getLog().info("Generating Client using Spring Rest Template");
        execute("java", "resttemplate", true, false, true);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy