Clarify maven.test.search.classdir

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@387972 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-03-22 23:30:18 +00:00
parent b2a71910ad
commit baafe32fe2

View File

@ -146,9 +146,7 @@
You can specify some args separated by a space.
Sample :
<source><![CDATA[
maven.junit.jvmargs=-Xmx160m -verbose
]]>
</source>
maven.junit.jvmargs=-Xmx160m -verbose]]></source>
</td>
</tr>
<tr>
@ -161,9 +159,7 @@ maven.junit.jvmargs=-Xmx160m -verbose
Sample :
<source><![CDATA[
maven.junit.envvars=LD_LIBRARY_PATH
LD_LIBRARY_PATH=/usr/local/lib
]]>
</source>
LD_LIBRARY_PATH=/usr/local/lib]]></source>
</td>
</tr>
<tr>
@ -179,23 +175,22 @@ LD_LIBRARY_PATH=/usr/local/lib
<source><![CDATA[
maven.junit.sysproperties=prop1 basedir
prop1=your value
basedir=${basedir}
]]>
</source>
basedir=${basedir}]]></source>
</td>
</tr>
<tr>
<td>maven.test.search.classdir</td>
<td>Yes</td>
<td>
Use this property to specify that JUnit should search the test classes directory
rather than the source directory. This allows for test cases to be written in other
Use this property to specify that JUnit should search the
test classes directory (<code>${maven.test.dest}</code>)
rather than the source directory (<code>${pom.build.unitTestSourceDirectory}</code>).
This allows for test cases to be written in other
languages such as Groovy which generate bytecode that can then be used by this plugin.
It might also be necessary to specify this property if you
use <code>&lt;sourceModifications&gt;</code> in your pom.
Sample :
<source><![CDATA[
maven.test.search.classdir=true
]]>
</source>
<source><![CDATA[maven.test.search.classdir=true]]></source>
</td>
</tr>
<tr>