mirror of https://github.com/apache/maven.git
compile based on source roots for test mojo too
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163424 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
21f1cffa59
commit
7549992577
|
@ -1,27 +1,20 @@
|
||||||
package org.apache.maven.plugin;
|
package org.apache.maven.plugin;
|
||||||
|
|
||||||
import org.codehaus.plexus.compiler.Compiler;
|
|
||||||
import org.codehaus.plexus.compiler.CompilerError;
|
|
||||||
import org.codehaus.plexus.compiler.javac.JavacCompiler;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @goal testCompile
|
* @goal testCompile
|
||||||
*
|
*
|
||||||
* @description Compiles test sources
|
* @description Compiles test sources
|
||||||
*
|
*
|
||||||
* @prereq compiler:compile
|
|
||||||
*
|
|
||||||
* @parameter
|
* @parameter
|
||||||
* name="sourceDirectory"
|
* name="compileSourceRootsList"
|
||||||
* type="String"
|
* type="java.util.List"
|
||||||
* required="true"
|
* required="true"
|
||||||
* validator=""
|
* validator=""
|
||||||
* expression="#project.build.unitTestSourceDirectory"
|
* expression="#project.testCompileSourceRootsList"
|
||||||
* description=""
|
* description=""
|
||||||
|
*
|
||||||
* @parameter
|
* @parameter
|
||||||
* name="outputDirectory"
|
* name="outputDirectory"
|
||||||
* type="String"
|
* type="String"
|
||||||
|
@ -46,8 +39,6 @@ import java.util.List;
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
|
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @todo use compile source roots and not the pom.build.sourceDirectory so that any
|
|
||||||
* sort of preprocessing and/or source generation can be taken into consideration.
|
|
||||||
*/
|
*/
|
||||||
public class TestCompilerMojo
|
public class TestCompilerMojo
|
||||||
extends CompilerMojo
|
extends CompilerMojo
|
||||||
|
|
Loading…
Reference in New Issue