不能使vert.x + kotlin + gradle热重新部署工程

我刚开始研究vert.x并从https://github.com/vert-x3/vertx-examples/tree/master/kotlin-examples/web下载了一个示例restful项目。 根据自述,它应该能够自动重新部署时,有任何文件更改,但似乎没有工作。 不管我多少次更改主类文件,都不能反映出来。 我所做的是:

运行“gradlew run”

C:\vertx-examples-master\kotlin-examples\web>gradlew run :compileKotlin UP-TO-DATE :compileJava UP-TO-DATE :copyMainKotlinClasses UP-TO-DATE :processResources UP-TO-DATE :classes UP-TO-DATE :run Jan 08, 2018 7:16:04 PM io.vertx.core.impl.launcher.commands.Watcher INFO: Watched paths: [C:\vertx-examples-master\kotlin-examples\web\.\out] Jan 08, 2018 7:16:04 PM io.vertx.core.impl.launcher.commands.Watcher INFO: Starting the vert.x application in redeploy mode Starting vert.x application... 58d1ec56-6d4c-4209-9fba-71cd6f54101c-redeploy Jan 08, 2018 7:16:05 PM io.vertx.core.impl.launcher.commands.VertxIsolatedDeployer INFO: Succeeded in deploying verticle 

更改源文件,启动程序能够检测到更改,并说它重新部署Verticle

 Jan 08, 2018 7:16:46 PM io.vertx.core.impl.launcher.commands.Watcher INFO: Redeploying! Stopping vert.x application '58d1ec56-6d4c-4209-9fba-71cd6f54101c-redeploy' Application '58d1ec56-6d4c-4209-9fba-71cd6f54101c-redeploy' terminated with status 0 '.' is not recognized as an internal or external command, operable program or batch file. Jan 08, 2018 7:16:47 PM io.vertx.core.impl.launcher.commands.Watcher INFO: User command terminated with status 1 Starting vert.x application... 58d1ec56-6d4c-4209-9fba-71cd6f54101c-redeploy Jan 08, 2018 7:16:47 PM io.vertx.core.impl.launcher.commands.Watcher INFO: Redeployment done in 966 ms. Jan 08, 2018 7:16:48 PM io.vertx.core.impl.launcher.commands.VertxIsolatedDeployer INFO: Succeeded in deploying verticle 

但事实上,它仍在运行旧的代码

我的问题是我需要做的任何事情,以使其正常工作。 我花了一天,浏览解决方案,但仍然无法通过它。

非常感谢。