View Javadoc

1   package org.apache.maven.plugin.failsafe;
2   
3   import java.util.ArrayList;
4   import java.util.Iterator;
5   import java.util.List;
6   
7   import org.apache.maven.plugin.AbstractMojo;
8   import org.apache.maven.plugin.MojoExecutionException;
9   
10  /**
11   * Display help information on maven-failsafe-plugin.<br/> Call <pre>  mvn failsafe:help -Ddetail=true -Dgoal=&lt;goal-name&gt;</pre> to display parameter details.
12   *
13   * @version generated on Wed Nov 30 15:01:48 CET 2011
14   * @author org.apache.maven.tools.plugin.generator.PluginHelpGenerator (version 2.8)
15   * @goal help
16   * @requiresProject false
17   * @threadSafe
18   */
19  public class HelpMojo
20      extends AbstractMojo
21  {
22      /**
23       * If <code>true</code>, display all settable properties for each goal.
24       * 
25       * @parameter expression="${detail}" default-value="false"
26       */
27      private boolean detail;
28  
29      /**
30       * The name of the goal for which to show help. If unspecified, all goals will be displayed.
31       * 
32       * @parameter expression="${goal}"
33       */
34      private java.lang.String goal;
35  
36      /**
37       * The maximum length of a display line, should be positive.
38       * 
39       * @parameter expression="${lineLength}" default-value="80"
40       */
41      private int lineLength;
42  
43      /**
44       * The number of spaces per indentation level, should be positive.
45       * 
46       * @parameter expression="${indentSize}" default-value="2"
47       */
48      private int indentSize;
49  
50  
51      /** {@inheritDoc} */
52      public void execute()
53          throws MojoExecutionException
54      {
55          if ( lineLength <= 0 )
56          {
57              getLog().warn( "The parameter 'lineLength' should be positive, using '80' as default." );
58              lineLength = 80;
59          }
60          if ( indentSize <= 0 )
61          {
62              getLog().warn( "The parameter 'indentSize' should be positive, using '2' as default." );
63              indentSize = 2;
64          }
65  
66          StringBuffer sb = new StringBuffer();
67  
68          append( sb, "org.apache.maven.plugins:maven-failsafe-plugin:2.11", 0 );
69          append( sb, "", 0 );
70  
71          append( sb, "Maven Failsafe Plugin", 0 );
72          append( sb, "Surefire is a test framework project.", 1 );
73          append( sb, "", 0 );
74  
75          if ( goal == null || goal.length() <= 0 )
76          {
77              append( sb, "This plugin has 3 goals:", 0 );
78              append( sb, "", 0 );
79          }
80  
81          if ( goal == null || goal.length() <= 0 || "help".equals( goal ) )
82          {
83              append( sb, "failsafe:help", 0 );
84              append( sb, "Display help information on maven-failsafe-plugin.\nCall\n\u00a0\u00a0mvn\u00a0failsafe:help\u00a0-Ddetail=true\u00a0-Dgoal=<goal-name>\nto display parameter details.", 1 );
85              append( sb, "", 0 );
86              if ( detail )
87              {
88                  append( sb, "Available parameters:", 1 );
89                  append( sb, "", 0 );
90  
91                  append( sb, "detail (Default: false)", 2 );
92                  append( sb, "If true, display all settable properties for each goal.", 3 );
93                  append( sb, "Expression: ${detail}", 3 );
94                  append( sb, "", 0 );
95  
96                  append( sb, "goal", 2 );
97                  append( sb, "The name of the goal for which to show help. If unspecified, all goals will be displayed.", 3 );
98                  append( sb, "Expression: ${goal}", 3 );
99                  append( sb, "", 0 );
100 
101                 append( sb, "indentSize (Default: 2)", 2 );
102                 append( sb, "The number of spaces per indentation level, should be positive.", 3 );
103                 append( sb, "Expression: ${indentSize}", 3 );
104                 append( sb, "", 0 );
105 
106                 append( sb, "lineLength (Default: 80)", 2 );
107                 append( sb, "The maximum length of a display line, should be positive.", 3 );
108                 append( sb, "Expression: ${lineLength}", 3 );
109                 append( sb, "", 0 );
110             }
111         }
112 
113         if ( goal == null || goal.length() <= 0 || "integration-test".equals( goal ) )
114         {
115             append( sb, "failsafe:integration-test", 0 );
116             append( sb, "Run integration tests using Surefire.", 1 );
117             append( sb, "", 0 );
118             if ( detail )
119             {
120                 append( sb, "Available parameters:", 1 );
121                 append( sb, "", 0 );
122 
123                 append( sb, "additionalClasspathElements", 2 );
124                 append( sb, "Additional elements to be appended to the classpath.", 3 );
125                 append( sb, "", 0 );
126 
127                 append( sb, "argLine", 2 );
128                 append( sb, "Arbitrary JVM options to set on the command line.", 3 );
129                 append( sb, "Expression: ${argLine}", 3 );
130                 append( sb, "", 0 );
131 
132                 append( sb, "basedir (Default: ${basedir})", 2 );
133                 append( sb, "The base directory of the project being tested. This can be obtained in your integration test via System.getProperty(\'basedir\').", 3 );
134                 append( sb, "", 0 );
135 
136                 append( sb, "childDelegation (Default: false)", 2 );
137                 append( sb, "When false it makes tests run using the standard classloader delegation instead of the default Maven isolated classloader. Only used when forking (forkMode is not \'none\').\nSetting it to false helps with some problems caused by conflicts between xml parsers in the classpath and the Java 5 provider parser.", 3 );
138                 append( sb, "Expression: ${childDelegation}", 3 );
139                 append( sb, "", 0 );
140 
141                 append( sb, "classesDirectory (Default: ${project.build.outputDirectory})", 2 );
142                 append( sb, "The directory containing generated classes of the project being tested. This will be included after the test classes in the test classpath.", 3 );
143                 append( sb, "", 0 );
144 
145                 append( sb, "classpathDependencyExcludes", 2 );
146                 append( sb, "List of dependencies to exclude from the test classpath. Each dependency string must follow the format groupId:artifactId. For example: org.acme:project-a", 3 );
147                 append( sb, "", 0 );
148 
149                 append( sb, "classpathDependencyScopeExclude", 2 );
150                 append( sb, "A dependency scope to exclude from the test classpath. The scope should be one of the scopes defined by org.apache.maven.artifact.Artifact. This includes the following:\n-\tcompile - system, provided, compile\n-\truntime - compile, runtime\n-\tcompile+runtime - system, provided, compile, runtime\n-\truntime+system - system, compile, runtime\n-\ttest - system, provided, compile, runtime, test\n", 3 );
151                 append( sb, "", 0 );
152 
153                 append( sb, "debugForkedProcess", 2 );
154                 append( sb, "Attach a debugger to the forked JVM. If set to \'true\', the process will suspend and wait for a debugger to attach on port 5005. If set to some other string, that string will be appended to the argLine, allowing you to configure arbitrary debuggability options (without overwriting the other options specified through the argLine parameter).", 3 );
155                 append( sb, "Expression: ${maven.failsafe.debug}", 3 );
156                 append( sb, "", 0 );
157 
158                 append( sb, "disableXmlReport (Default: false)", 2 );
159                 append( sb, "Flag to disable the generation of report files in xml format.", 3 );
160                 append( sb, "Expression: ${disableXmlReport}", 3 );
161                 append( sb, "", 0 );
162 
163                 append( sb, "enableAssertions (Default: true)", 2 );
164                 append( sb, "By default, Surefire enables JVM assertions for the execution of your test cases. To disable the assertions, set this flag to \'false\'.", 3 );
165                 append( sb, "Expression: ${enableAssertions}", 3 );
166                 append( sb, "", 0 );
167 
168                 append( sb, "encoding (Default: ${project.reporting.outputEncoding})", 2 );
169                 append( sb, "The character encoding scheme to be applied.", 3 );
170                 append( sb, "Expression: ${encoding}", 3 );
171                 append( sb, "", 0 );
172 
173                 append( sb, "environmentVariables", 2 );
174                 append( sb, "Additional environment variables to set on the command line.", 3 );
175                 append( sb, "", 0 );
176 
177                 append( sb, "excludedGroups", 2 );
178                 append( sb, "(TestNG/JUnit47 provider with JUnit4.8+ only) Excluded groups. Any methods/classes/etc with one of the groups specified in this list will specifically not be run.\nFor JUnit, this parameter forces the use of the 4.7 provider\nThis parameter is ignored if the suiteXmlFiles parameter is specified.", 3 );
179                 append( sb, "Expression: ${excludedGroups}", 3 );
180                 append( sb, "", 0 );
181 
182                 append( sb, "excludes", 2 );
183                 append( sb, "A list of <exclude> elements specifying the tests (by pattern) that should be excluded in testing. When not specified and when the test parameter is not specified, the default excludes will be \n<excludes>\n\u00a0<exclude>**/*$*</exclude>\n</excludes>\n(which excludes all inner classes).\nThis parameter is ignored if the TestNG suiteXmlFiles parameter is specified. Each exclude item may also contain a comma-separated sublist of items, which will be treated as multiple \u00a0<exclude> entries.\n", 3 );
184                 append( sb, "", 0 );
185 
186                 append( sb, "failIfNoTests", 2 );
187                 append( sb, "Set this to \'true\' to cause a failure if there are no tests to run. Defaults to \'false\'.", 3 );
188                 append( sb, "Expression: ${failIfNoTests}", 3 );
189                 append( sb, "", 0 );
190 
191                 append( sb, "forkedProcessTimeoutInSeconds", 2 );
192                 append( sb, "Kill the forked test process after a certain number of seconds. If set to 0, wait forever for the process, never timing out.", 3 );
193                 append( sb, "Expression: ${failsafe.timeout}", 3 );
194                 append( sb, "", 0 );
195 
196                 append( sb, "forkMode (Default: once)", 2 );
197                 append( sb, "Option to specify the forking mode. Can be \'never\', \'once\' or \'always\'. \'none\' and \'pertest\' are also accepted for backwards compatibility. \'always\' forks for each test-class.", 3 );
198                 append( sb, "Expression: ${forkMode}", 3 );
199                 append( sb, "", 0 );
200 
201                 append( sb, "groups", 2 );
202                 append( sb, "(TestNG/JUnit47 provider with JUnit4.8+ only) Groups for this test. Only classes/methods/etc decorated with one of the groups specified here will be included in test run, if specified.\nFor JUnit, this parameter forces the use of the 4.7 provider\nThis parameter is ignored if the suiteXmlFiles parameter is specified.", 3 );
203                 append( sb, "Expression: ${groups}", 3 );
204                 append( sb, "", 0 );
205 
206                 append( sb, "includes", 2 );
207                 append( sb, "A list of <include> elements specifying the tests (by pattern) that should be included in testing. When not specified and when the test parameter is not specified, the default includes will be \n<includes>\n\u00a0<include>**/IT*.java</include>\n\u00a0<include>**/*IT.java</include>\n\u00a0<include>**/*ITCase.java</include>\n</includes>\nEach include item may also contain a comma-separated sublist of items, which will be treated as multiple \u00a0<include> entries.\nThis parameter is ignored if the TestNG suiteXmlFiles parameter is specified.", 3 );
208                 append( sb, "", 0 );
209 
210                 append( sb, "junitArtifactName (Default: junit:junit)", 2 );
211                 append( sb, "Allows you to specify the name of the JUnit artifact. If not set, junit:junit will be used.", 3 );
212                 append( sb, "Expression: ${junitArtifactName}", 3 );
213                 append( sb, "", 0 );
214 
215                 append( sb, "jvm", 2 );
216                 append( sb, "Option to specify the jvm (or path to the java executable) to use with the forking options. For the default, the jvm will be a new instance of the same VM as the one used to run Maven. JVM settings are not inherited from MAVEN_OPTS.", 3 );
217                 append( sb, "Expression: ${jvm}", 3 );
218                 append( sb, "", 0 );
219 
220                 append( sb, "objectFactory", 2 );
221                 append( sb, "(TestNG only) Define the factory class used to create all test instances.", 3 );
222                 append( sb, "Expression: ${objectFactory}", 3 );
223                 append( sb, "", 0 );
224 
225                 append( sb, "parallel", 2 );
226                 append( sb, "(TestNG only) When you use the parallel attribute, TestNG will try to run all your test methods in separate threads, except for methods that depend on each other, which will be run in the same thread in order to respect their order of execution. (JUnit 4.7 provider) Supports values \'classes\'/\'methods\'/\'both\' to run in separate threads, as controlled by threadCount.", 3 );
227                 append( sb, "Expression: ${parallel}", 3 );
228                 append( sb, "", 0 );
229 
230                 append( sb, "perCoreThreadCount (Default: true)", 2 );
231                 append( sb, "(JUnit 4.7 provider) Indicates that threadCount is per cpu core.", 3 );
232                 append( sb, "Expression: ${perCoreThreadCount}", 3 );
233                 append( sb, "", 0 );
234 
235                 append( sb, "printSummary (Default: true)", 2 );
236                 append( sb, "Option to print summary of test suites or just print the test cases that have errors.", 3 );
237                 append( sb, "Expression: ${failsafe.printSummary}", 3 );
238                 append( sb, "", 0 );
239 
240                 append( sb, "properties", 2 );
241                 append( sb, "List of properties for configuring all TestNG related configurations. This is the new preferred method of configuring TestNG.", 3 );
242                 append( sb, "", 0 );
243 
244                 append( sb, "redirectTestOutputToFile (Default: false)", 2 );
245                 append( sb, "Set this to \'true\' to redirect the unit test standard output to a file (found in reportsDirectory/testName-output.txt).", 3 );
246                 append( sb, "Expression: ${maven.test.redirectTestOutputToFile}", 3 );
247                 append( sb, "", 0 );
248 
249                 append( sb, "remoteRepositories", 2 );
250                 append( sb, "The remote plugin repositories declared in the POM.", 3 );
251                 append( sb, "Expression: ${project.pluginArtifactRepositories}", 3 );
252                 append( sb, "", 0 );
253 
254                 append( sb, "reportFormat (Default: brief)", 2 );
255                 append( sb, "Selects the formatting for the test report to be generated. Can be set as \'brief\' or \'plain\'.", 3 );
256                 append( sb, "Expression: ${failsafe.reportFormat}", 3 );
257                 append( sb, "", 0 );
258 
259                 append( sb, "reportNameSuffix", 2 );
260                 append( sb, "Add custom text into report filename: TEST-testClassName-reportNameSuffix.xml, testClassName-reportNameSuffix.txt and testClassName-reportNameSuffix-output.txt. File TEST-testClassName-reportNameSuffix.xml has changed attributes \'testsuite\'--\'name\' and \'testcase\'--\'classname\' - reportNameSuffix is added to the attribute value.", 3 );
261                 append( sb, "Expression: ${surefire.reportNameSuffix}", 3 );
262                 append( sb, "", 0 );
263 
264                 append( sb, "reportsDirectory (Default: ${project.build.directory}/failsafe-reports)", 2 );
265                 append( sb, "Base directory where all reports are written to.", 3 );
266                 append( sb, "", 0 );
267 
268                 append( sb, "runOrder (Default: filesystem)", 2 );
269                 append( sb, "Defines the order the tests will be run in. Supported values are \'alphabetical\', \'reversealphabetical\', \'random\', \'hourly\' (alphabetical on even hours, reverse alphabetical on odd hours), \'failedfirst\', \'balanced\' and \'filesystem\'. Odd/Even for hourly is determined at the time the of scanning the classpath, meaning it could change during a multi-module build. Failed first will run tests that failed on previous run first, as well as new tests for this run. Balanced is only relevant with parallel=classes, and will try to optimize the run-order of the tests to make all tests complete at the same time, reducing the overall execution time. Note that the statistics are stored in a file named .surefire-XXXXXXXXX beside pom.xml, and should not be checked into version control. The \'XXXXX\' is the SHA1 checksum of the entire surefire configuration, so different configurations will have different statistics files, meaning if you change any config settings you will re-run once before new statistics data can be established.", 3 );
270                 append( sb, "", 0 );
271 
272                 append( sb, "skip (Default: false)", 2 );
273                 append( sb, "Set this to \'true\' to bypass unit tests entirely. Its use is NOT RECOMMENDED, especially if you enable it using the \'maven.test.skip\' property, because maven.test.skip disables both running the tests and compiling the tests. Consider using the skipTests parameter instead.", 3 );
274                 append( sb, "Expression: ${maven.test.skip}", 3 );
275                 append( sb, "", 0 );
276 
277                 append( sb, "skipExec", 2 );
278                 append( sb, "Deprecated. Use skipTests instead.", 3 );
279                 append( sb, "", 0 );
280                 append( sb, "This old parameter is just like skipTests, but bound to the old property \'maven.test.skip.exec\'.", 3 );
281                 append( sb, "Expression: ${maven.test.skip.exec}", 3 );
282                 append( sb, "", 0 );
283 
284                 append( sb, "skipITs", 2 );
285                 append( sb, "Set this to \'true\' to skip running integration tests, but still compile them. Its use is NOT RECOMMENDED, but quite convenient on occasion.", 3 );
286                 append( sb, "Expression: ${skipITs}", 3 );
287                 append( sb, "", 0 );
288 
289                 append( sb, "skipTests (Default: false)", 2 );
290                 append( sb, "Set this to \'true\' to skip running tests, but still compile them. Its use is NOT RECOMMENDED, but quite convenient on occasion.", 3 );
291                 append( sb, "Expression: ${skipTests}", 3 );
292                 append( sb, "", 0 );
293 
294                 append( sb, "suiteXmlFiles", 2 );
295                 append( sb, "(TestNG only) List of <suiteXmlFile> elements specifying TestNG suite xml file locations. Note that suiteXmlFiles is incompatible with several other parameters of this plugin, like includes/excludes.\nThis parameter is ignored if the test parameter is specified (allowing you to run a single test instead of an entire suite).", 3 );
296                 append( sb, "", 0 );
297 
298                 append( sb, "summaryFile", 2 );
299                 append( sb, "The summary file to write integration test results to.", 3 );
300                 append( sb, "Required: Yes", 3 );
301                 append( sb, "Expression: ${project.build.directory}/failsafe-reports/failsafe-summary.xml", 3 );
302                 append( sb, "", 0 );
303 
304                 append( sb, "systemProperties", 2 );
305                 append( sb, "Deprecated. Use systemPropertyVariables instead.", 3 );
306                 append( sb, "", 0 );
307                 append( sb, "List of System properties to pass to the JUnit tests.", 3 );
308                 append( sb, "", 0 );
309 
310                 append( sb, "systemPropertiesFile", 2 );
311                 append( sb, "List of System properties, loaded from a file, to pass to the JUnit tests.", 3 );
312                 append( sb, "", 0 );
313 
314                 append( sb, "systemPropertyVariables", 2 );
315                 append( sb, "List of System properties to pass to the JUnit tests.", 3 );
316                 append( sb, "", 0 );
317 
318                 append( sb, "test", 2 );
319                 append( sb, "Specify this parameter to run individual tests by file name, overriding the includes/excludes parameters. Each pattern you specify here will be used to create an include pattern formatted like **/${test}.java, so you can just type \'-Dit.test=MyTest\' to run a single test called \'foo/MyTest.java\'.\nThis parameter overrides the includes/excludes parameters, and the TestNG suiteXmlFiles parameter. since 2.7.3 You can execute a limited number of method in the test with adding #myMethod or #my*ethod. Si type \'-Dtest=MyTest#myMethod\' supported for junit 4.x and testNg", 3 );
320                 append( sb, "Expression: ${it.test}", 3 );
321                 append( sb, "", 0 );
322 
323                 append( sb, "testClassesDirectory (Default: ${project.build.testOutputDirectory})", 2 );
324                 append( sb, "The directory containing generated test classes of the project being tested. This will be included at the beginning of the test classpath.", 3 );
325                 append( sb, "", 0 );
326 
327                 append( sb, "testNGArtifactName (Default: org.testng:testng)", 2 );
328                 append( sb, "Allows you to specify the name of the TestNG artifact. If not set, org.testng:testng will be used.", 3 );
329                 append( sb, "Expression: ${testNGArtifactName}", 3 );
330                 append( sb, "", 0 );
331 
332                 append( sb, "testSourceDirectory (Default: ${project.build.testSourceDirectory})", 2 );
333                 append( sb, "The test source directory containing test class sources.", 3 );
334                 append( sb, "Required: Yes", 3 );
335                 append( sb, "", 0 );
336 
337                 append( sb, "threadCount", 2 );
338                 append( sb, "(TestNG/JUnit 4.7 provider only) The attribute thread-count allows you to specify how many threads should be allocated for this execution. Only makes sense to use in conjunction with the parallel parameter.", 3 );
339                 append( sb, "Expression: ${threadCount}", 3 );
340                 append( sb, "", 0 );
341 
342                 append( sb, "trimStackTrace (Default: true)", 2 );
343                 append( sb, "Whether to trim the stack trace in the reports to just the lines within the test, or show the full trace.", 3 );
344                 append( sb, "Expression: ${trimStackTrace}", 3 );
345                 append( sb, "", 0 );
346 
347                 append( sb, "useFile (Default: true)", 2 );
348                 append( sb, "Option to generate a file test report or just output the test report to the console.", 3 );
349                 append( sb, "Expression: ${failsafe.useFile}", 3 );
350                 append( sb, "", 0 );
351 
352                 append( sb, "useManifestOnlyJar (Default: true)", 2 );
353                 append( sb, "By default, Surefire forks your tests using a manifest-only JAR; set this parameter to \'false\' to force it to launch your tests with a plain old Java classpath. (See http://maven.apache.org/plugins/maven-surefire-plugin/examples/class-loading.html for a more detailed explanation of manifest-only JARs and their benefits.) Beware, setting this to \'false\' may cause your tests to fail on Windows if your classpath is too long.", 3 );
354                 append( sb, "Expression: ${failsafe.useManifestOnlyJar}", 3 );
355                 append( sb, "", 0 );
356 
357                 append( sb, "useSystemClassLoader (Default: true)", 2 );
358                 append( sb, "Option to pass dependencies to the system\'s classloader instead of using an isolated class loader when forking. Prevents problems with JDKs which implement the service provider lookup mechanism by using the system\'s classloader.", 3 );
359                 append( sb, "Expression: ${failsafe.useSystemClassLoader}", 3 );
360                 append( sb, "", 0 );
361 
362                 append( sb, "useUnlimitedThreads (Default: false)", 2 );
363                 append( sb, "(JUnit 4.7 provider) Indicates that the thread pool will be unlimited. The parallel parameter and the actual number of classes/methods will decide. Setting this to \'true\' effectively disables perCoreThreadCount and threadCount. Defaults to \'false\'.", 3 );
364                 append( sb, "Expression: ${useUnlimitedThreads}", 3 );
365                 append( sb, "", 0 );
366 
367                 append( sb, "workingDirectory", 2 );
368                 append( sb, "Command line working directory.", 3 );
369                 append( sb, "Expression: ${basedir}", 3 );
370                 append( sb, "", 0 );
371             }
372         }
373 
374         if ( goal == null || goal.length() <= 0 || "verify".equals( goal ) )
375         {
376             append( sb, "failsafe:verify", 0 );
377             append( sb, "Verify integration tests ran using Surefire.", 1 );
378             append( sb, "", 0 );
379             if ( detail )
380             {
381                 append( sb, "Available parameters:", 1 );
382                 append( sb, "", 0 );
383 
384                 append( sb, "basedir (Default: ${basedir})", 2 );
385                 append( sb, "The base directory of the project being tested. This can be obtained in your unit test by System.getProperty(\'basedir\').", 3 );
386                 append( sb, "", 0 );
387 
388                 append( sb, "encoding (Default: ${project.reporting.outputEncoding})", 2 );
389                 append( sb, "The character encoding scheme to be applied.", 3 );
390                 append( sb, "Expression: ${encoding}", 3 );
391                 append( sb, "", 0 );
392 
393                 append( sb, "failIfNoTests", 2 );
394                 append( sb, "Set this to \'true\' to cause a failure if there are no tests to run.", 3 );
395                 append( sb, "Expression: ${failIfNoTests}", 3 );
396                 append( sb, "", 0 );
397 
398                 append( sb, "reportsDirectory (Default: ${project.build.directory}/failsafe-reports)", 2 );
399                 append( sb, "Base directory where all reports are written to.", 3 );
400                 append( sb, "", 0 );
401 
402                 append( sb, "skip (Default: false)", 2 );
403                 append( sb, "Set this to \'true\' to bypass unit tests entirely. Its use is NOT RECOMMENDED, especially if you enable it using the \'maven.test.skip\' property, because maven.test.skip disables both running the tests and compiling the tests. Consider using the skipTests parameter instead.", 3 );
404                 append( sb, "Expression: ${maven.test.skip}", 3 );
405                 append( sb, "", 0 );
406 
407                 append( sb, "skipExec", 2 );
408                 append( sb, "Deprecated. Use -DskipTests instead.", 3 );
409                 append( sb, "", 0 );
410                 append( sb, "This old parameter is just like skipTests, but bound to the old property maven.test.skip.exec.", 3 );
411                 append( sb, "Expression: ${maven.test.skip.exec}", 3 );
412                 append( sb, "", 0 );
413 
414                 append( sb, "skipITs", 2 );
415                 append( sb, "Set this to \'true\' to skip running integration tests, but still compile them. Its use is NOT RECOMMENDED, but quite convenient on occasion.", 3 );
416                 append( sb, "Expression: ${skipITs}", 3 );
417                 append( sb, "", 0 );
418 
419                 append( sb, "skipTests", 2 );
420                 append( sb, "Set this to \'true\' to skip running tests, but still compile them. Its use is NOT RECOMMENDED, but quite convenient on occasion.", 3 );
421                 append( sb, "Expression: ${skipTests}", 3 );
422                 append( sb, "", 0 );
423 
424                 append( sb, "summaryFile", 2 );
425                 append( sb, "The summary file to read integration test results from.", 3 );
426                 append( sb, "Required: Yes", 3 );
427                 append( sb, "Expression: ${project.build.directory}/failsafe-reports/failsafe-summary.xml", 3 );
428                 append( sb, "", 0 );
429 
430                 append( sb, "summaryFiles", 2 );
431                 append( sb, "Additional summary files to read integration test results from.", 3 );
432                 append( sb, "", 0 );
433 
434                 append( sb, "testClassesDirectory (Default: ${project.build.testOutputDirectory})", 2 );
435                 append( sb, "The directory containing generated test classes of the project being tested. This will be included at the beginning the test classpath.", 3 );
436                 append( sb, "", 0 );
437 
438                 append( sb, "testFailureIgnore (Default: false)", 2 );
439                 append( sb, "Set this to true to ignore a failure during testing. Its use is NOT RECOMMENDED, but quite convenient on occasion.", 3 );
440                 append( sb, "Expression: ${maven.test.failure.ignore}", 3 );
441                 append( sb, "", 0 );
442             }
443         }
444 
445         if ( getLog().isInfoEnabled() )
446         {
447             getLog().info( sb.toString() );
448         }
449     }
450 
451     /**
452      * <p>Repeat a String <code>n</code> times to form a new string.</p>
453      *
454      * @param str String to repeat
455      * @param repeat number of times to repeat str
456      * @return String with repeated String
457      * @throws NegativeArraySizeException if <code>repeat < 0</code>
458      * @throws NullPointerException if str is <code>null</code>
459      */
460     private static String repeat( String str, int repeat )
461     {
462         StringBuffer buffer = new StringBuffer( repeat * str.length() );
463 
464         for ( int i = 0; i < repeat; i++ )
465         {
466             buffer.append( str );
467         }
468 
469         return buffer.toString();
470     }
471 
472     /** 
473      * Append a description to the buffer by respecting the indentSize and lineLength parameters.
474      * <b>Note</b>: The last character is always a new line.
475      * 
476      * @param sb The buffer to append the description, not <code>null</code>.
477      * @param description The description, not <code>null</code>.
478      * @param indent The base indentation level of each line, must not be negative.
479      */
480     private void append( StringBuffer sb, String description, int indent )
481     {
482         for ( Iterator it = toLines( description, indent, indentSize, lineLength ).iterator(); it.hasNext(); )
483         {
484             sb.append( it.next().toString() ).append( '\n' );
485         }
486     }
487 
488     /** 
489      * Splits the specified text into lines of convenient display length.
490      * 
491      * @param text The text to split into lines, must not be <code>null</code>.
492      * @param indent The base indentation level of each line, must not be negative.
493      * @param indentSize The size of each indentation, must not be negative.
494      * @param lineLength The length of the line, must not be negative.
495      * @return The sequence of display lines, never <code>null</code>.
496      * @throws NegativeArraySizeException if <code>indent < 0</code>
497      */
498     private static List toLines( String text, int indent, int indentSize, int lineLength )
499     {
500         List lines = new ArrayList();
501 
502         String ind = repeat( "\t", indent );
503         String[] plainLines = text.split( "(\r\n)|(\r)|(\n)" );
504         for ( int i = 0; i < plainLines.length; i++ )
505         {
506             toLines( lines, ind + plainLines[i], indentSize, lineLength );
507         }
508 
509         return lines;
510     }
511 
512     /** 
513      * Adds the specified line to the output sequence, performing line wrapping if necessary.
514      * 
515      * @param lines The sequence of display lines, must not be <code>null</code>.
516      * @param line The line to add, must not be <code>null</code>.
517      * @param indentSize The size of each indentation, must not be negative.
518      * @param lineLength The length of the line, must not be negative.
519      */
520     private static void toLines( List lines, String line, int indentSize, int lineLength )
521     {
522         int lineIndent = getIndentLevel( line );
523         StringBuffer buf = new StringBuffer( 256 );
524         String[] tokens = line.split( " +" );
525         for ( int i = 0; i < tokens.length; i++ )
526         {
527             String token = tokens[i];
528             if ( i > 0 )
529             {
530                 if ( buf.length() + token.length() >= lineLength )
531                 {
532                     lines.add( buf.toString() );
533                     buf.setLength( 0 );
534                     buf.append( repeat( " ", lineIndent * indentSize ) );
535                 }
536                 else
537                 {
538                     buf.append( ' ' );
539                 }
540             }
541             for ( int j = 0; j < token.length(); j++ )
542             {
543                 char c = token.charAt( j );
544                 if ( c == '\t' )
545                 {
546                     buf.append( repeat( " ", indentSize - buf.length() % indentSize ) );
547                 }
548                 else if ( c == '\u00A0' )
549                 {
550                     buf.append( ' ' );
551                 }
552                 else
553                 {
554                     buf.append( c );
555                 }
556             }
557         }
558         lines.add( buf.toString() );
559     }
560 
561     /** 
562      * Gets the indentation level of the specified line.
563      * 
564      * @param line The line whose indentation level should be retrieved, must not be <code>null</code>.
565      * @return The indentation level of the line.
566      */
567     private static int getIndentLevel( String line )
568     {
569         int level = 0;
570         for ( int i = 0; i < line.length() && line.charAt( i ) == '\t'; i++ )
571         {
572             level++;
573         }
574         for ( int i = level + 1; i <= level + 4 && i < line.length(); i++ )
575         {
576             if ( line.charAt( i ) == '\t' )
577             {
578                 level++;
579                 break;
580             }
581         }
582         return level;
583     }
584 }