org.efaps.maven.plugin.CompileMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-efaps-plugin Show documentation
Show all versions of maven-efaps-plugin Show documentation
Maven eFaps Plug-In to install / deploy eFaps applications.
/*
* Copyright 2003 - 2009 The eFaps Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Revision: $Rev: 5657 $
* Last Changed: $Date: 2010-10-12 08:21:56 -0500 (Tue, 12 Oct 2010) $
* Last Changed By: $Author: jan.moxter $
*/
package org.efaps.maven.plugin;
import org.efaps.update.schema.program.esjp.ESJPCompiler;
import org.efaps.update.schema.program.jasperreport.JasperReportCompiler;
import org.efaps.update.schema.program.staticsource.CSSCompiler;
import org.efaps.update.schema.program.staticsource.JavaScriptCompiler;
import org.efaps.update.schema.program.staticsource.WikiCompiler;
import org.efaps.update.util.InstallationException;
import org.efaps.update.version.Application;
import org.efaps.util.EFapsException;
import org.jfrog.maven.annomojo.annotations.MojoGoal;
import org.jfrog.maven.annomojo.annotations.MojoParameter;
import org.jfrog.maven.annomojo.annotations.MojoRequiresDependencyResolution;
/**
* Compiles all ESPJ's and Cascade Style Sheets within eFaps.
*
* @author The eFaps Team
* @version $Id: CompileMojo.java 5657 2010-10-12 13:21:56Z jan.moxter $
*/
@MojoGoal(value = "compile")
@MojoRequiresDependencyResolution
public final class CompileMojo
extends EFapsAbstractMojo
{
/**
* Number of UUID's to generate.
*/
@MojoParameter(expression = "${target}", defaultValue = "all")
private String target;
/**
* Executes the compile goal.
*/
public void execute()
{
init();
boolean abort = true;
try {
if ("all".equalsIgnoreCase(this.target)) {
getLog().info("==Compiling all Elements==");
Application.compileAll(getUserName(), getClasspathElements(), true);
} else {
reloadCache();
startTransaction();
if ("java".equalsIgnoreCase(this.target)) {
getLog().info("==Compiling Java==");
(new ESJPCompiler(getClasspathElements())).compile(null, true);
} else if ("css".equalsIgnoreCase(this.target)) {
getLog().info("==Compiling CSS==");
new CSSCompiler().compile();
} else if ("js".equalsIgnoreCase(this.target)) {
getLog().info("==Compiling Javascript==");
new JavaScriptCompiler().compile();
} else if ("wiki".equalsIgnoreCase(this.target)) {
getLog().info("==Compiling Wiki==");
new WikiCompiler().compile();
} else if ("jasper".equalsIgnoreCase(this.target)) {
getLog().info("==Compiling JasperReports==");
new JasperReportCompiler(getClasspathElements()).compile();
} else {
getLog().error("target: " + this.target + "' not found");
}
commitTransaction();
}
abort = false;
} catch (final InstallationException e) {
getLog().error(e);
} catch (final EFapsException e) {
getLog().error(e);
} finally {
try {
if (abort) {
abortTransaction();
}
} catch (final EFapsException e) {
getLog().error(e);
}
}
}
}