Skip to content

Commit

Permalink
Add Javadoc for DevMojo#jvmArgs
Browse files Browse the repository at this point in the history
I had to set this in a sample, and it took me
a few tries to come up with the proper syntax
for passing multiple parameters as the description
of the property was completely absent
  • Loading branch information
geoand committed Sep 19, 2024
1 parent 1c8464b commit 5c3103b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions devtools/maven/src/main/java/io/quarkus/maven/DevMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,9 @@ public class DevMojo extends AbstractMojo {
@Parameter
private File workingDir;

/**
* Allows configuring arbitrary JVM arguments. Multiple arguments can be specified by delimiting them with a space character.
*/
@Parameter(defaultValue = "${jvm.args}")
private String jvmArgs;

Expand Down

0 comments on commit 5c3103b

Please sign in to comment.