I am begin with clojure, when I invoke clojure from java. The "Could not locate cljcore/core__init.class, cljcore/core.clj or cljcore/core.cljc on classpath" is arised.
(defproject cljcore "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "
http://example.com/FIXME"
:license {
:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "
https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/core.logic "1.0.0"]
]
:repl-options {
:init-ns cljcore.core}
:java-source-paths
["java"]
:source-paths
["src"]
:test-paths
["test"]
)