Re: Gradle: how to deal with it

2014-05-12 Thread Catonano
For now I just wrote a quick project file and used lein. I made my exploration. Thanks to the both of you 2014-05-10 17:53 GMT+02:00 Dave Ray : > You should use Clojuresque [1]. The latest version (1.7.0) can start an > nrepl server for you. Since I'm a bad user (and because of various > dep

Re: Gradle: how to deal with it

2014-05-10 Thread Dave Ray
You should use Clojuresque [1]. The latest version (1.7.0) can start an nrepl server for you. Since I'm a bad user (and because of various dependency-related hurdles at work), I still haven't actually started using it though. Luckily, with earlier versions it's pretty easy to define a new task that

Re: Gradle: how to deal with it

2014-05-10 Thread Gary Trakhman
I'm in the process of writing up a procedure for the latest cider with alternative repls. Here's the relevant bits of how leiningen starts a repl: https://github.com/technomancy/leiningen/blob/master/src/leiningen/repl.clj#L116 https://github.com/technomancy/leiningen/blob/master/src/leiningen/rep

Gradle: how to deal with it

2014-05-10 Thread Catonano
Hello I use to press M-. in Emacs to jump to the definition of a function and M-, to jump back to where I came from This requires an nREPL to be working Now I'd like to explore a project using Gradle. Can I get an nREPL with Gradle ? Can Gradle export a project file so that I can use lein to ha