com.cmeza.sdgenerator.plugin.SDAllMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-generator Show documentation
Show all versions of spring-data-generator Show documentation
Spring Data Generator for JPA repositories and managers.
The newest version!
package com.cmeza.sdgenerator.plugin;
import com.cmeza.sdgenerator.util.Constants;
import com.cmeza.sdgenerator.util.GeneratorProperties;
import com.cmeza.sdgenerator.util.SDLogger;
import com.cmeza.sdgenerator.util.SDMojoException;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
/**
* Created by carlos on 25/04/22.
*/
@Mojo(name = "all")
@Execute(phase = LifecyclePhase.COMPILE)
@SuppressWarnings("unused")
public class SDAllMojo extends CommonsMojo {
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
SDLogger.configure(getLog());
this.validateField(Constants.ENTITY_PACKAGE);
this.validateField(Constants.REPOSITORY_PACKAGE);
this.validateField(Constants.EXTENDS);
try {
GeneratorProperties generatorProperties = this.buildProperties();
SDRepositoryMojo sdRepositoryMojo = new SDRepositoryMojo();
sdRepositoryMojo.executeInternalMojo(generatorProperties);
SDManagerMojo sdManagerMojo = new SDManagerMojo();
sdManagerMojo.executeInternalMojo(generatorProperties);
SDLogger.printGeneratedTables(true);
} catch (Exception e) {
SDLogger.addError(e.getMessage());
throw new SDMojoException(e.getMessage(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy