We have a complicated, multi-module project that for various reasons must be run with 'gradle bootRun' and not 'grails run-app'. With 'grails run-app' it is easy to run in an https environment locally by using 'grails run-app -https', but this does not work for gradle bootRun and I could not find an obvious equivalent. Is there something I can add to my build file, or pass as a parameter, to mimick the -https behaviour of grails run-app when running locally on a developer machine?
EDIT: I'm using the default embedded servlet container (Tomcat)