70.17.2 通过Gradle使用Jetty 9.2
对于Gradle,你需要设置jetty.version
属性,例如对于一个简单的webapp或service:
ext['jetty.version'] = '9.2.17.v20160517'
dependencies {
compile ('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile ('org.springframework.boot:spring-boot-starter-jetty')
}