i've just upgraded my app to grails 2.3.4 and i'm implementing Cucumber and Geb test in order to keep it all covered.
The problem is that one of the requirements of the application that should only listen secure connections (https) so i added in config groovy
grails.plugin.springsecurity.auth.forceHttps = "true"
grails.plugin.springsecurity.secureChannel.definition = [
'/**':'REQUIRES_SECURE_CHANNEL'
]
Now, the problem is when i run grails test-app -https, is not working the param -https and only starts the application in non-secure channel.
Any ideas to run test-app in https?
Thanks in advance