Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwalker committed Aug 15, 2014
1 parent 531d884 commit 9720667
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
34 changes: 17 additions & 17 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

** Setup

Just add =[lein-plz "0.1.1-SNAPSHOT"]= to the =:plugins= vector of your
Just add =[lein-plz "0.1.1"]= to the =:plugins= vector of your
=:user= profile.

*** Adding your own abbreviations
Expand All @@ -38,21 +38,21 @@
Each map should be in its own file:

#+BEGIN_SRC clojure
{:org.clojure/clojurescript #{"clojurescript" "cljs"}
:org.clojure/core.async #{"core.async" "async"}
:org.clojure/core.typed #{"core.typed" "typed"}
{org.clojure/clojurescript #{"clojurescript" "cljs"}
org.clojure/core.async #{"core.async" "async"}
org.clojure/core.typed #{"core.typed" "typed"}

;; Databases for jdbc
:org.apache.derby/derby #{"derby"}
:hsqldb/hsqldb #{"hsqldb"}
:mysql/mysql-connector-java #{"mysql"}
:net.sourceforge.jtds/jtds #{"jtds"}
:postgresql/postgresql #{"postgresql" "postgres"}
:org.xerial/sqlite-jdbc #{"sqlite"}

:compojure #{"compojure"}
:hiccup #{"hiccup"}
:ring #{"ring"}}
org.apache.derby/derby #{"derby"}
hsqldb/hsqldb #{"hsqldb"}
mysql/mysql-connector-java #{"mysql"}
net.sourceforge.jtds/jtds #{"jtds"}
postgresql/postgresql #{"postgresql" "postgres"}
org.xerial/sqlite-jdbc #{"sqlite"}

compojure #{"compojure"}
hiccup #{"hiccup"}
ring #{"ring"}}
#+END_SRC

The keywords are the full dependency names, while each value is a
Expand All @@ -63,7 +63,7 @@

#+BEGIN_SRC clojure
{:user {:plugins [[cider/cider-nrepl "0.8.0-SNAPSHOT"]
[lein-plz "0.1.1-SNAPSHOT"]
[lein-plz "0.1.1"]
[slamhound "1.5.5"]]
:plz ["/home/stuartsierra/.lein/plz/myplzmap.edn"]}}
#+END_SRC
Expand All @@ -72,7 +72,7 @@

#+BEGIN_SRC clojure
{:user {:plugins [[cider/cider-nrepl "0.8.0-SNAPSHOT"]
[lein-plz "0.1.1-SNAPSHOT"]
[lein-plz "0.1.1"]
[slamhound "1.5.5"]]
:plz ["/home/stuartsierra/.lein/plz/myplzmap.edn"
"/home/stuartsierra/.lein/plz/user-map-2.edn"
Expand All @@ -82,7 +82,7 @@
;; so user-map-3 overwrites user-map-2 overwrites ...
#+END_SRC
** Warnings from your doctor
+ Only use this on project.clj's you can afford to throw away.
+ Only use on project.clj's you can afford to throw away.
+ I haven't checked if relative paths work.

** License
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject lein-plz "0.1.1-SNAPSHOT"
(defproject lein-plz "0.1.1"
:description "A Leiningen plugin for adding dependencies to projects quickly."
:url "http://johnwalker.io/lein-plz"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit 9720667

Please sign in to comment.