Lein appengine-prepare fails?

The documentation states that appengine-magic should be added to the :dev-dependencies . I was able to reproduce your problem by creating a project from scratch and trying to run appengine-prepare when appengine-magic was in :dependencies .

Up vote 2 down vote favorite share g+ share fb share tw.

I'm trying get Clojure/Compojure/appengine-magic to work by following the example at github.com/gcv/appengine-magic But when I run lein appengine-prepare I get: Exception in thread "main" C:\Users\henrik\IdeaProjects\simple-example\lib\dev not found. (NO_SOURCE_FILE:0) at clojure.lang.Compiler. Eval(Compiler.

Java:5440) at clojure.lang.Compiler. Eval(Compiler. Java:5391) at clojure.

Core$eval. Invoke(core. Clj:2382) at clojure.

Main$eval_opt. Invoke(main. Clj:235) at clojure.

Main$initialize. Invoke(main. Clj:254) at clojure.

Main$script_opt. Invoke(main. Clj:270) at clojure.

Main$main. DoInvoke(main. Clj:354) at clojure.lang.RestFn.

Invoke(RestFn. Java:457) at clojure.lang.Var. Invoke(Var.

Java:377) at clojure.lang.AFn. ApplyToHelper(AFn. Java:172) at clojure.lang.Var.

ApplyTo(Var. Java:482) at clojure.main. Main(main.

Java:37) Caused by: C:\Users\henrik\IdeaProjects\simple-example\lib\dev not found. Have I missed something? Lein new simple-example edit project.

Clj: (defproject simple-example "1.0.0-SNAPSHOT" :description "FIXME: write description" :dependencies org. Clojure/clojure "1.2.1" appengine-magic "0.4.1") lein deps lein appengine-new edit core. Clj: (ns simple-example.

Core (:use compojure. Core) (:require appengine-magic. Core :as ae)) (defroutes simple-example-app-handler (GET "/" req {:status 200 :headers {"Content-Type" "text/plain"} :body " world!

"}) (GET "/hello/:name" name {:status 200 :headers {"Content-Type" "text/plain"} :body (format " %s! " name)}) (ANY "*" _ {:status 200 :headers {"Content-Type" "text/plain"} :body "not found"})) (ae/def-appengine-app simple-example-app #'simple-example-app-handler) lein appengine-prepare google-app-engine clojure compojure appengine-magic link|improve this question edited Apr 10 '11 at 20:06ponzao3,5911718 asked Apr 10 '11 at 18:54Henrik1147 40% accept rate.

The documentation states that appengine-magic should be added to the :dev-dependencies. I was able to reproduce your problem by creating a project from scratch and trying to run appengine-prepare when appengine-magic was in :dependencies. So instead of: (defproject simple-example "1.0.0-SNAPSHOT" :description "FIXME: write description" :dependencies org.

Clojure/clojure "1.2.1" appengine-magic "0.4.1") You should have: (defproject simple-example "1.0.0-SNAPSHOT" :description "FIXME: write description" :dependencies org. Clojure/clojure "1.2.1" :dev-dependencies appengine-magic "0.4.1") This should hopefully fix your problem.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions