Fork me on GitHub
#leiningen
<
2016-03-03
>
virmundi07:03:14

hello. I figure this is a noob question, but how do I get lein repl to format multi-line commands? I have a three line form that I want to modify as a unit.

virmundi07:03:47

I have rlwrap installed. That helped, but the repl doesn't treat forms as a block.

mhjort09:03:51

@venantius thanks for backwards compatibility support in ultra. It really helps when you are working with a zillion of different Clojure projects which sometimes use old versions of Clojure

rickmoynihan17:03:24

@virmundi: pretty sure you can't do that with the standard repl... ultra might support it. If you're using Emacs & CIDER (and probably cursive) this is taken care of by paredit/smartparens etc... I'd recommend using that if you're not already

dmuylwyk18:03:58

Hiya. Anyone here have actual experience using Leiningen deploy with Artifactory? I can put a JAR to the repository; however, it doesn't appear to be the uberjar I need. For some reason, the JAR that ends up in Artifactory isn't packaged with its dependencies. It's missing Clojure runtime. See exception:

Exception in thread "main" java.lang.NoClassDefFoundError: clojure/lang/Var
       at biapi.core.<clinit>(Unknown Source)
Caused by: java.lang.ClassNotFoundException: clojure.lang.Var
       at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
       at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
       at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
       at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
       ... 1 more