/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.tool.extension;
import java.io.File;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.project.MavenProject;
import org.xwiki.tool.extension.util.AbstractExtensionMojo;
/**
* Generate complete extension descriptor for each artifact packaged in the WAR and for the WAR itself.
*
* @version $Id: 56845859c92e1077f0a17ba0039872ee58f8870e $
* @since 8.4RC1
*/
@Mojo(name = "war", defaultPhase = LifecyclePhase.GENERATE_RESOURCES, requiresDependencyResolution = ResolutionScope.RUNTIME, requiresProject = true, threadSafe = true)
public class WarMojo extends AbstractExtensionMojo
{
/**
* The directory where the war is generated.
*/
@Parameter(defaultValue = "${project.build.directory}/${project.build.finalName}", required = true)
private File webappDirectory;
/**
* The maven project.
*/
@Parameter(defaultValue = "${project}", required = true, readonly = true)
protected MavenProject project;
@Override
public void execute() throws MojoExecutionException
{
initializeComponents();
// Register the WAR
registerWAR();
// Register dependencies
registerDependencies();
disposeComponents();
}
private void registerWAR() throws MojoExecutionException
{
// Make sure "/META-INF/" exists
File directory = new File(this.webappDirectory, "META-INF");
directory.mkdirs();
// Write descriptor
try {
saveExtension(new File(directory, "extension.xed"), this.project.getModel());
} catch (Exception e) {
throw new MojoExecutionException("Failed to write WAR descriptor", e);
}
}
private void registerDependencies() throws MojoExecutionException
{
// Make sure "/WEB-INF/lib/" exist
File libDirectory = new File(this.webappDirectory, "WEB-INF/lib/");
libDirectory.mkdirs();
// Register dependencies
saveExtensions(this.project.getArtifacts(), libDirectory, "jar");
}
}