-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Clojure and lein-swank dependencies.
- Loading branch information
Norbert Schneider
authored and
Norbert Schneider
committed
Apr 21, 2012
1 parent
c4a5371
commit 6f1dc7a
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
classes | ||
.lein-plugins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
(defproject korma-crud "0.0.1-SNAPSHOT" | ||
:description "Create CRUD views for Korma-queries" | ||
:dependencies [[korma "0.3.0-beta7"] | ||
:dependencies [[org.clojure/clojure "1.4.0"] | ||
[korma "0.3.0-beta7"] | ||
[postgresql "8.4-702.jdbc4"] | ||
[compojure "1.0.3"] | ||
[ring "1.1.0"] | ||
[hiccup "1.0.0"]] | ||
:plugins [[lein-cucumber "1.0.0"]] | ||
:plugins [[lein-cucumber "1.0.0"] | ||
[lein-swank "1.4.2"]] | ||
:source-paths ["src/clj"] | ||
:test-paths ["test/clj"] | ||
:profiles {:dev {:dependencies [[midje "1.4.0-beta1"]]}}) |