This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-06-29
Channels
- # announcements (44)
- # architecture (12)
- # babashka (45)
- # beginners (56)
- # calva (16)
- # cider (34)
- # clj-kondo (6)
- # clojure (47)
- # clojure-austin (2)
- # clojure-brasil (3)
- # clojure-europe (39)
- # clojure-germany (2)
- # clojure-nl (1)
- # clojure-norway (39)
- # clojurescript (7)
- # cursive (1)
- # datahike (2)
- # datomic (28)
- # emacs (8)
- # gratitude (3)
- # humbleui (4)
- # hyperfiddle (45)
- # kaocha (1)
- # lsp (94)
- # nbb (2)
- # off-topic (29)
- # practicalli (8)
- # releases (2)
- # shadow-cljs (6)
- # squint (17)
- # tools-deps (12)
- # vim (11)
Hey, I have a question about an issue While running the REPL in IntelliJ. I’m using IntelliJ with cursive and when trying to run the REPL I get the error Saying Exception in plugin Cursive (1.12.8-2023.1) with stacktrace that start with:
java.lang.IllegalArgumentException: /Workspace/my-project/src/java/generated/OuterClass.class is not a relative path
at $as_relative_path.invokeStatic(io.clj:414)
My IntelliJ version is: IDEA 2023.1.3
Cursive version: 1.12.8-2023.1
Tried to add a profile under ~/.lein/profiles.clj with `{:user {:java-dmd <Output of which java command>}}`
But this didn’t resolve the issue either.
If I change the java-source-paths in my project.clj as follow:
From _:java-source-paths_ ["src/java" "src/java/generated"]
to _:java-source-paths_ ["./src/java" "./src/java/generated"]
I can run the REPL, but I want to fix my configuration and not the project.clj
Thank you