I am using IntelliJ IDEA in a Clojure project, I just started but I get the message "File core.clj is not under a source root", the project has 2 folders: .idea and src, inside src I got the core.clj file in which showing the structure of the project. This is the photo containing the structure of the project.
I have no source root, I just created the core.clj and the deps.edn file and the Deps_project.iml file, nothing else, how can I solve this? Do I need to write another file?
You need just two files for your project:
In file
deps.ednIn file
src/spec_tutorial/core.cljNote there is a correspondence between the Clojure namespace and the source file path, but beware that hyphens
-in namespaces are translated to underscores_in path names.