This commit is contained in:
parent
006adfec92
commit
41fe553787
1 changed files with 10 additions and 3 deletions
|
@ -39,7 +39,8 @@ for the server.
|
||||||
{
|
{
|
||||||
"main_file": "somefilequalifier",
|
"main_file": "somefilequalifier",
|
||||||
"main_class": "com.example.SomeClass",
|
"main_class": "com.example.SomeClass",
|
||||||
"arguments": ["--someArgument"]
|
"arguments": ["--someArgument"],
|
||||||
|
"jvm_arguments": ["-Djvmargument"]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -64,5 +65,11 @@ specified in of manifest of the [main jar file](#mainfile) should be used.
|
||||||
### arguments
|
### arguments
|
||||||
|
|
||||||
This is an array of arguments, which will be used to launch the instance
|
This is an array of arguments, which will be used to launch the instance
|
||||||
in addition to inherited arguments. They will be appendes after inherited
|
in addition to inherited arguments. They will be appended after inherited
|
||||||
arguments.
|
arguments.
|
||||||
|
|
||||||
|
### jvm_arguments
|
||||||
|
|
||||||
|
This is an array of JVM arguments, which will be used to launch the instance
|
||||||
|
in addition to inherited JVM arguments. They will be appended after inherited
|
||||||
|
JVM arguments.
|
Loading…
Reference in a new issue