Contents
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
apply plugin: 'jetty'
jettyRun {
reload = "automatic"
scanIntervalSeconds = 1
}



task watchfiles {
inputs.files 'src'
doLast {
compileJava
}
}

watchfiles.finalizedBy compileJava
Contents