
com.google.code.play.PlayDistExplodedMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-maven-plugin Show documentation
Show all versions of play-maven-plugin Show documentation
Maven Plugin for Play! Framework for integration of these two very different worlds
The newest version!
/*
* Copyright 2010-2016 Grzegorz Slowikowski
*
* 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.
*/
package com.google.code.play;
import java.io.File;
import java.io.IOException;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
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.shared.dependency.tree.DependencyTreeBuilderException;
import org.codehaus.plexus.archiver.ArchiverException;
import org.codehaus.plexus.archiver.manager.NoSuchArchiverException;
import org.codehaus.plexus.archiver.zip.ZipArchiver;
/**
* Create exploded Play! framework and Play! application (standalone distribution).
*
* @author Grzegorz Slowikowski
* @since 1.0.0
*/
@Mojo( name = "dist-exploded", defaultPhase = LifecyclePhase.PACKAGE, requiresDependencyResolution = ResolutionScope.TEST )
public class PlayDistExplodedMojo
extends AbstractPlayDistMojo
{
/**
* Skip dist exploded generation.
*
* @since 1.0.0
*/
@Parameter( property = "play.distExplodedSkip", defaultValue = "false" )
private boolean distExplodedSkip;
protected void internalExecute()
throws MojoExecutionException, MojoFailureException, IOException
{
if ( distExplodedSkip )
{
getLog().info( "Exploded dist generation skipped" );
return;
}
String checkMessage = playModuleNotApplicationCheck();
if ( checkMessage != null )
{
getLog().info( checkMessage );
return;
}
try
{
ConfigurationParser configParser = getConfiguration();
ZipArchiver zipArchiver = prepareArchiver( configParser );
try
{
File distOutputDirectory = new File( project.getBuild().getDirectory(), "dist" );
getLog().info( "Building dist directory: " + distOutputDirectory.getAbsolutePath() );
expandArchive( zipArchiver, distOutputDirectory );
}
finally
{
cleanUpArchiver( zipArchiver );
}
}
catch ( ArchiverException e )
{
throw new MojoExecutionException( "Failed to assemble distribution directory: " + e.getMessage(), e );
}
catch ( DependencyTreeBuilderException e )
{
throw new MojoExecutionException( "Failed to assemble distribution directory: " + e.getMessage(), e );
}
catch ( NoSuchArchiverException e )
{
throw new MojoExecutionException( "Failed to assemble distribution directory: " + e.getMessage(), e );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy