RE: Using libraries without Lein

2017-11-28 Thread Sean Corfield
Kashyap <ckkash...@gmail.com> Sent: Tuesday, November 28, 2017 2:49:53 PM To: clojure@googlegroups.com Subject: Re: Using libraries without Lein Thanks Alex ... just what I was looking for - putting the jars in classpath that is! I'll try out the new tool a little later though. Regards, Kashyap

Re: Using libraries without Lein

2017-11-28 Thread C K Kashyap
Thanks Alex ... just what I was looking for - putting the jars in classpath that is! I'll try out the new tool a little later though. Regards, Kashyap On Tue, Nov 28, 2017 at 2:27 PM, Alex Miller wrote: > Sure. You need a jar for Clojure and a jar for clj-http and then

Re: Using libraries without Lein

2017-11-28 Thread Alex Miller
Sure. You need a jar for Clojure and a jar for clj-http and then just run Java with those in a classpath: java -cp clojure.jar:clj-http.jar my-program There is a lighter weight tool that we've added in Clojure 1.9 (also works with 1.8) that can help in assembling classpaths and serving as a

Using libraries without Lein

2017-11-28 Thread Kashyap CK
Hi, I am trying to use clj-http in my clojure program. I am trying to do the whole thing in a "light-weight" manner - without creating a project and all or using lein. Is that possible? or do I need to use Lein? Regards, Kashyap -- You received this message because you are subscribed to the