com.isomorphic.maven.mojo.reify.ValidateMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isc-maven-plugin Show documentation
Show all versions of isc-maven-plugin Show documentation
An officially supported collection of goals useful for using SmartClient / SmartGWT products in a Maven environment.
package com.isomorphic.maven.mojo.reify;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
/**
* A utility class to run the {@link ImportMojo}'s
* validation step
* independently of the import process.
*
* Invocation will require values for smartclientRuntimeDir, dataSourcesDir, and optionally
* mockDataSourcesDir parameters.
*
* @see ImportMojo
*/
@Mojo(name="reify-validate", requiresProject=false)
public class ValidateMojo extends ImportMojo {
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
super.validate();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy