9

I am using Gretty plugin for running web application from Gradle script. Is it possible to select a specific version of jetty container to run? Not just jetty9 vs jetty8, but e.g. 9.2.13.v20150730

Nikem
  • 5,716
  • 3
  • 32
  • 59

1 Answers1

5

Since Gretty 2.0.0 it is possible to override versions of Jetty and servlet-api using gradle.properties file: http://akhikhl.github.io/gretty-doc/Overriding-servlet-container-versions.html

For instance:

jetty9Version = 9.2.22.v20170606
jreznot
  • 2,694
  • 2
  • 35
  • 53