I am trying to run my application using the Gradle javaexec task. However, jvmargs and args are not passed to the command. Why?
task runArgoDev(type: JavaExec) { main = "org.app.ArgoDevRunner" classpath = configurations.testRuntime project.ext.jvmargs = ['-Xdock:name=Argo', '-Xmx512m', '-Dfile.encoding=UTF-8', '-Dapple.awt.textantialiasing=on', '-ea'] project.ext.args = ['-initParameter', 'implicit-scrollpane-support=true']
}
build.gradle gradle
user3531297
source share