Intellij IDEA debugger not working on Gradle Vert.X project
I'm developing a project using Vert.X framework using Gradle build tool. The problem I have is that breakpoints in IntelliJ simply doesn't work in any way I've tried. Here is a run configuration for Vert.X which I use in Gradle: run { args = [ 'run', mainVerticleName, "-conf", confPath, "--redeploy=$project.ext.watchForChange", "--launcher-class=$mainClassName", "--on-redeploy=$project.ext.doOnChange" ] } So the deployment is done using Gradle , runs without any issues, IntelliJ debugger is connected, but breakpoints are not working . The ways I've tried to make it work: 1) Gradle run