I'm trying to figure out how to create uberwar from Clojure Ring and Compojure application in Eclipse Mars with Counterclockwise on Windows.
I'm following this tutorial, and I'm basically doing this:
- in package explorer, I right click and create new Clojure project
- right click newly created project, Leiningen, Generic Leiningen Command Line, enter
lein new compojure-app gae-app-demoas per tutorial - this creates the Hello World app which I can run locally without any problems
- then I go on and in the same way as in step 2 run
lein ring uberwar - This starts new Console window which doesn't output anything and basically hangs until I manually stop it. It doesn't output anything, it doesn't report any errors, and it doesn't create war in target folder.
I've checked several other tutorials and I didn't find anybody having problems with creating uberwar. Where can I start debugging this, am I doing something wrong? This is one of the basic things one needs to do with every Ring/Compjure application, so it should be something simple I'm missing I hope.