I recently discovered the play plugin for gradle and would like to know how to configure the port the application runs on.
I've read the documentation page on the gradle site but still find myself a little confused. So if someone would like to just like to spell it out for me that would be great.
Kind Regards
Will
Playrun has an httpPort property you can use, something like this should work
tasks.withType(PlayRun) {
httpPort = 9999
}