This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-05-26
Channels
- # ai (1)
- # announcements (7)
- # babashka (2)
- # beginners (23)
- # biff (3)
- # calva (1)
- # chlorine-clover (3)
- # cider (2)
- # clj-kondo (12)
- # clojure (25)
- # clojure-brasil (4)
- # clojure-europe (33)
- # clojure-nl (1)
- # clojure-norway (7)
- # clojure-uk (1)
- # clojurescript (30)
- # clr (6)
- # consulting (1)
- # cursive (14)
- # data-science (1)
- # datalevin (4)
- # datomic (3)
- # events (4)
- # graphql (1)
- # gratitude (2)
- # hoplon (10)
- # inf-clojure (3)
- # interceptors (1)
- # introduce-yourself (1)
- # off-topic (13)
- # pathom (2)
- # pedestal (12)
- # rdf (14)
- # releases (6)
- # sci (17)
- # shadow-cljs (12)
When using cursive on a Clojure CLI project I am facing an issue when I create a folder that is not src
, I created a dev
folder to be a toolbox for my repl environment. But every time I reload IntelliJ it show this message on first print and code is not highlighted propperly. Trying setting Modules on Project Structure it gives a warning that is imported from Maven and configuration might be lost.
Is this something about cursive, Intellij or something I'm missing on my configurations? I'm really believing that is the last case 😅
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
io.pedestal/pedestal.service {:mvn/version "0.5.7"}
io.pedestal/pedestal.route {:mvn/version "0.5.7"}
io.pedestal/pedestal.jetty {:mvn/version "0.5.7"}
com.stuartsierra/component {:mvn/version "0.4.0"}
com.stuartsierra/component.repl {:mvn/version "0.2.0"}
org.slf4j/slf4j-simple {:mvn/version "1.7.28"}
clj-http/clj-http {:mvn/version "3.12.3"}}
:aliases
{:api {:ns-default cloped.core
:exec-fn start-api
:exec-args {:env :prod}}
:run-m {:main-opts ["-m" "cloped.clojure-backend-auth"]}
:run-x {:ns-default cloped.clojure-backend-auth
:exec-fn greet
:exec-args {:name "Clojure"}}
:build {:deps {io.github.clojure/tools.build
{:git/tag "v0.9.2" :git/sha "fe6b140"}}
:ns-default build}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}}
:dev {:main-opts ["-e" "(require 'cloped.dev) (in-ns 'cloped.dev)" "-r"]
:extra-paths ["dev"]
:extra-deps {org.clojure/tools.namespace {:mvn/version "1.4.4"}
io.github.nubank/morse {:git/tag "v2023.04.30.01" :git/sha "d99b09c"}}}}}
On my :dev alias yes, I've added to extra-paths
But is not ticked :thinking_face:
Maybe is because of this it appears as deps (system)
on clojure deps window?
I ticked now btw
Yes, it solved. Thanks a lot 😄
:thinking_face: it worked just by ticking deps
I'll check it all any way