Clarify usage of run.arguments with Maven plugin

This commit is contained in:
Dave Syer 2014-04-17 04:42:31 -07:00
parent 0d44e6e0d2
commit 2d16c59147
2 changed files with 3 additions and 2 deletions

View File

@ -273,7 +273,7 @@ The following configuration options are available for the `spring-boot:run` goal
|Name |Description
|`arguments` or `-Drun.arguments`
|Arguments that should be passed to the application.
|Arguments that should be passed to the application (comma-separated).
|`addResources` or `-Drun.addResources`
|Add Maven resources to the classpath directly, this allows live in-place editing or

View File

@ -78,7 +78,8 @@ public class RunMojo extends AbstractMojo {
private Boolean noverify;
/**
* Arguments that should be passed to the application.
* Arguments that should be passed to the application. On command line use commas to
* separate multiple arguments.
*/
@Parameter(property = "run.arguments")
private String[] arguments;