Earlier I was having trouble running something and intellij threw this error. Would you like to enable classpath file mode for all run configurations of your project?
I clicked enable. This did'nt solve my problem but now i cant seem to run anything from intellij. Where is this option in the settings so I can disable it?
Asked
Active
Viewed 6,170 times
16

WontonJon
- 413
- 5
- 14
-
1This answer should help: http://stackoverflow.com/a/5591427/1348743 – Javaru Aug 15 '16 at 19:38
2 Answers
8
Set Ddynamic.classpath to true in the Intellij configuration file in the workspace or Add -Ddynamic.classpath=true
as a JVM argument.

UserF40
- 3,533
- 2
- 23
- 34
6
go to your project's root folder, there is .idea folder. open workspace.xml file - search for "dynamic.classpath" property and change the value to false.

L.E.
- 170
- 2
- 8