Index: plugin.jelly =================================================================== --- plugin.jelly (revision 426466) +++ plugin.jelly (working copy) @@ -89,32 +89,32 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + Index: plugin.properties =================================================================== --- plugin.properties (revision 426466) +++ plugin.properties (working copy) @@ -36,3 +36,11 @@ maven.test.skip = false maven.test.excludeXmlApis = no maven.test.classpath = + +maven.test.compile.compilerargs = ${maven.compile.compilerargs} +maven.test.compile.encoding = ${maven.compile.encoding} +maven.test.compile.executable = ${maven.compile.executable} +maven.test.compile.fork = ${maven.compile.fork} +maven.test.compile.source = ${maven.compile.source} +maven.test.compile.target = ${maven.compile.target} +maven.test.compile.verbose = ${maven.compile.verbose} Index: xdocs/properties.xml =================================================================== --- xdocs/properties.xml (revision 426466) +++ xdocs/properties.xml (working copy) @@ -134,6 +134,63 @@ + maven.test.compile.compilerargs + Yes + + Specifies compiler arguments to be used for tests compilation. Requires + maven.test.compile.fork to bet set to true. + Defaults to ${maven.compile.compilerargs}. + + + + maven.test.compile.encoding + Yes + + Specifies source encoding to be used for tests compilation. + Defaults to ${maven.compile.encoding}. + + + + maven.test.compile.executable + Yes + + Names the program to be invoked as the java compiler for test classes. + Defaults to ${maven.compile.executable}. + + + + maven.test.compile.fork + Yes + + Runs the test classes compiler in a separate process. + Defaults to ${maven.compile.fork}. + + + + maven.test.compile.source + Yes + + Specifies the source version for the Java compiler for test classes. + Defaults to ${maven.compile.source}. + + + + maven.test.compile.target + Yes + + Generate class files for test classes for a specific JVM version. + Defaults to ${maven.compile.target}. + + + + maven.test.compile.verbose + Yes + + Asks the compiler for verbose output. + Defaults to ${maven.compile.verbose}. + + + maven.test.classpath Yes