Author: dennisl
Date: Thu Nov 16 12:59:37 2006
New Revision: 475925
URL: http://svn.apache.org/viewvc?view=rev&rev=475925
Log:
o Fix typos.
Modified:
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
Modified:
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt?view=diff&rev=475925&r1=475924&r2=475925
==============================================================================
---
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
(original)
+++
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
Thu Nov 16 12:59:37 2006
@@ -14,13 +14,13 @@
with the following wildcard patterns:
* <"**/Test*.java"> - includes all of its subdirectory and all java
- filename that starts with "Test".
+ filenames that start with "Test".
* <"**/*Test.java"> - includes all of its subdirectory and all java
- filename that ends with "Test".
+ filenames that end with "Test".
* <"**/*TestCase.java"> - includes all of its subdirectory and all java
- filename that ends with "TestCase".
+ filenames that end with "TestCase".
[]
@@ -49,8 +49,8 @@
* Exclusions
- There are certain times that some tests are causing the build to fail.
- Excluding them is one of the best workaround to continue the build.
+ There are certain times when some tests are causing the build to fail.
+ Excluding them is one of the best workarounds to continue the build.
Exclusions can be done by configuring the <<excludes>> property of the
plugin.