melix / jmh-gradle-plugin

Integrates the JMH benchmarking framework with Gradle
Apache License 2.0
662 stars 88 forks source link

Combine JVM arguments with a space in-between #198

Closed msridhar closed 2 years ago

msridhar commented 3 years ago

Right now they are combined with a comma (the default), which seems incorrect. E.g., if you do jvmArgsAppend = ["-Dfoo1=x","-Dfoo2=y"], the VM currently gets passed the single argument -Dfoo1=x,-Dfoo2=y, rather than -Dfoo1=x -Dfoo2=y.

melix commented 2 years ago

Thanks!