We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b31208a commit 32be2adCopy full SHA for 32be2ad
1 file changed
src/main/groovy/org/beryx/runtime/util/Util.groovy
@@ -185,7 +185,7 @@ class Util {
185
@CompileDynamic
186
static List<String> getDefaultJvmArgs(Project project) {
187
try {
188
- return project.application?.applicationDefaultJvmArgs
+ return new ArrayList(project.application?.applicationDefaultJvmArgs as List)
189
} catch (Exception e) {
190
return []
191
}
0 commit comments