Joost Klitsie
07/08/2020, 8:07 AM:backend:run
task in intellij) I cannot run my frontend project (by using :frontend:jsBrowserDevelopmentRun
). Absolutely nothing is happening as long as one of the two is running. The other has 0 output and will only magically start running once the first one is killed. (so for example there is no port clash, they use different ports anyway, but it doesn't get that far). If I save the run configuration and check the flag in intellij (or in Android studio, in both) at the run configurations to run in parallel, exactly nothing happens. I can save it all I want, but anytime I open the run configurations dialog again the parallel flag is unchecked. org.gradle.parallel=true
is set in my build.gradle. Is there any way I can run 2 different modules at the same time in intellij? (they share a common library if that is important). Also, I can run them simultaneously in bash with commands like ./gradlew :backend:run
on Windows. But there is no way for me to kill the process (so for example ^C does absolutely nothing, ^D does also nothing). I can only kill the process through task manager or probably if I open another bash find the process and kill it like that)no
07/08/2020, 7:39 PM