de.akquinet.innovation.play.maven.Play2CompilationMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play2-maven-plugin Show documentation
Show all versions of play2-maven-plugin Show documentation
A Maven Plugin to build Play2 Application
/*
* Copyright 2012 akquinet
* 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 de.akquinet.innovation.play.maven;
import org.apache.commons.exec.CommandLine;
import org.apache.commons.exec.DefaultExecutor;
import org.apache.commons.exec.ExecuteWatchdog;
import org.apache.maven.artifact.factory.ArtifactFactory;
import org.apache.maven.artifact.metadata.ArtifactMetadataSource;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.artifact.resolver.ArtifactCollector;
import org.apache.maven.artifact.resolver.ArtifactResolver;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.dependency.CopyDependenciesMojo;
import java.io.File;
import java.io.IOException;
import java.util.List;
/**
* Compile the Play application
*
* @goal compile
* @phase compile
*/
public class Play2CompilationMojo
extends AbstractPlay2Mojo {
public void execute()
throws MojoExecutionException {
String line = getPlay2().getAbsolutePath();
CommandLine cmdLine = CommandLine.parse(line);
cmdLine.addArgument("compile");
DefaultExecutor executor = new DefaultExecutor();
ExecuteWatchdog watchdog = new ExecuteWatchdog(120000); // 2min, even for Scala should be ok
executor.setWatchdog(watchdog);
executor.setExitValue(0);
executor.setWorkingDirectory(project.getBasedir());
try {
executor.execute(cmdLine);
} catch (IOException e) {
throw new MojoExecutionException("Error during compilation", e);
}
}
}