wetheinter.net.mojo.model.ModelMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xapi-maven-plugin Show documentation
Show all versions of xapi-maven-plugin Show documentation
Mojos for using xapi-dev utilies in maven builds.
package wetheinter.net.mojo.model;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
/**
* @goal modelgen
* @phase generate-sources
* @requiresDependencyResolution compile
* @author James X. Nelson
* @version $Id$
*/
public class ModelMojo extends AbstractXapiMojo{
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
if (getPlatform().toLowerCase().contains("gwt")) {
} else {
// write jre META-INF values
}
}
}