Skip to content

Commit

Permalink
switch back to benfb's gorilla version
Browse files Browse the repository at this point in the history
  • Loading branch information
benfb committed Nov 18, 2018
1 parent 83a6364 commit 985f677
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject lein-gorilla "0.4.0"
(defproject org.clojars.benfb/lein-gorilla "0.5.0"
:description "A Leiningen plugin for the Gorilla REPL."
:url "https://github.com/JonyEpsilon/lein-gorilla"
:license {:name "MIT"}
:dependencies [[gorilla-repl "0.4.0"]]
:dependencies [[org.clojars.benfb/gorilla-repl "0.5.0"]]
:eval-in-leiningen true)
4 changes: 2 additions & 2 deletions src/leiningen/gorilla.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[clojure.pprint :as pp]))

;; The version of Gorilla that we will use
(def gorilla-version "0.4.0")
(def gorilla-version "0.5.0")

;; This is the leiningen task. It needs no arguments, and can run outside a project (assuming you've got the plugin
;; installed in your profile).
Expand All @@ -22,7 +22,7 @@
nrepl-port (read-string (or (get opts-map ":nrepl-port") "0"))
;; inject the gorilla-repl dependency into the target project
curr-deps (or (:dependencies project) [])
new-deps (conj curr-deps ['gorilla-repl/gorilla-repl gorilla-version])
new-deps (conj curr-deps ['org.clojars.benfb/gorilla-repl gorilla-version])
prj (assoc project :dependencies new-deps)
project-name (:name project)
gorilla-options (:gorilla-options project)]
Expand Down

0 comments on commit 985f677

Please sign in to comment.