Skip to content

Commit 9f08d39

Browse files
committed
Switch hystrix-dashboard from using Jetty plugin to Gretty
1 parent 9263593 commit 9f08d39

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

hystrix-dashboard/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apply plugin: 'war'
2-
apply plugin: 'jetty'
2+
apply from: 'https://raw.github.com/akhikhl/gretty/master/pluginScripts/gretty.plugin'
33

44
dependencies {
55
provided 'javax.servlet:servlet-api:2.5'
@@ -10,6 +10,7 @@ dependencies {
1010
testCompile 'junit:junit:4.12'
1111
}
1212

13-
jettyRun {
14-
httpPort = 7979
13+
gretty {
14+
httpPort = 7979
15+
servletContainer = 'jetty9'
1516
}

0 commit comments

Comments
 (0)