Commit 2d16c591 authored by Dave Syer's avatar Dave Syer

Clarify usage of run.arguments with Maven plugin

parent 0d44e6e0
......@@ -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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment