groovy - Setting the http port for gradle/ratpack on the command line -
i trying run ratpack (https://github.com/pledbrook/lazybones/tree/master/src/templates/ratpack)
using "gradlew run" - uses default port, there way set port on command line used http?
something gradlew run -dhttp.port=8080 or similar?
you need configure @ build level…
run { jvmargs "-dratpack.port=8080" }
Comments
Post a Comment