forked from christianberg/compojureongae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
16 lines (16 loc) · 847 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject compojureongae "0.3.2"
:description "Example app for deployoing Compojure on Google App Engine"
:aot [compojureongae.core]
:dependencies [[compojure "0.4.0-RC3"]
[ring/ring-servlet "0.2.1"]
[hiccup "0.2.4"]
[appengine "0.2"]
[com.google.appengine/appengine-api-1.0-sdk "1.3.4"]
[com.google.appengine/appengine-api-labs "1.3.4"]]
:dev-dependencies [[swank-clojure "1.2.0"]
[ring/ring-jetty-adapter "0.2.0"]
[com.google.appengine/appengine-local-runtime "1.3.4"]
[com.google.appengine/appengine-api-stubs "1.3.4"]]
:repositories {"maven-gae-plugin" "http://maven-gae-plugin.googlecode.com/svn/repository"}
:compile-path "war/WEB-INF/classes"
:library-path "war/WEB-INF/lib")