One possible solution is configuring the properties when launching the task. E.g
task launch mytask --properties "deployer.mytask.cloudfoundry.env.JBP_CONFIG_OPEN_JDK_JRE={ jre: { version: 11.+ } }, deployer.mytask.cloudfoundry.use-spring-application-json=false"
Where "mytask" is the name of the task.
It's very important that you keep the format of JBP_CONFIG_OPEN_JDK_JRE, not deleting any space and not adding any quote (single or double), since changing it may cause a json format error.
Another possible solution is to configure the task apps using cf cli. This can be done from a script in an automation server by changing JBP_CONFIG_OPEN_JDK_JRE directly on the task app deployed in your TAS Tile. E.g.
sh "cf set-env $appname JBP_CONFIG_OPEN_JDK_JRE '{ jre: { version: 11.+ }}'"
sh "cf set-env $appname JBP_CONFIG_SPRING_AUTO_RECONFIGURATION '{enabled: false}'"
sh "cf restage $appname"