Skip to content

Instantly share code, notes, and snippets.

@PetrGlad
Created April 15, 2011 11:39
Show Gist options
  • Save PetrGlad/921570 to your computer and use it in GitHub Desktop.
Save PetrGlad/921570 to your computer and use it in GitHub Desktop.
My leiningen clojure project template.
(defproject test-project "1.0-SNAPSHOT"
:description "Some description."
:url "http://example.com"
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]
[compojure "0.6.2"] ; [ring "0.3.10"]
[ring/ring-jetty-adapter "0.2.3"]
[com.twinql.clojure/clj-apache-http "2.2.0"]
[match "0.2.0-SNAPSHOT"]
; [postgresql/postgresql "9.0-801.jdbc4"]
[clj-http "0.2.5"]
]
:dev-dependencies [[lein-eclipse "1.0.0"]
[lein-ring "0.4.0"]]
:ring {:handler clojuweb.core/app})
; Just some links that may be useful
; [clj-http "0.2.5"] ; JSON
; [control "0.2.3-SNAPSHOT"] ; clojure-control
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment