Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

(#16) Missing dependency on clojure.tools.nrepl #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[com.google.guava/guava "15.0"] ; Explicitly pull new Guava version for dependency conflicts.
[org.clojure/clojure "1.7.0"]
[com.cerner/clara-rules "0.18.0"]
[com.cerner/clara-rules "0.19.1"]

;; Dependencies for com.cemerick/austin
[org.clojure/tools.nrepl "0.2.13"]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a dep of com.cemerick/austin which is a pretty old thing to use for cljs.
If this is accurate, I think that:

  1. It'd make more sense for it to be in the :dev profile of :profiles
  2. As is the case in the main clara project, I think the cljs hooks should be removed so that the clj-side repl setup doesn't require cljs building/running at all. Some people don't care about that.

(2) Is probably something that can be looked at later once the main clara-rules project is doing a similar pattern.


;; Dependencies for ClojureScript example.
[prismatic/dommy "1.1.0"]
Expand Down