Re: Get rid of the clojure.jar

2014-04-12 Thread Fergal Byrne
+1 Gary I'd just run the Leiningen install process, then create a new project with it, and move your code into that. Do this right now, I can't imagine doing anything in Clojure that doesn't begin with lein new your-project. It will save you hours in fewer hours. Bonus: add Midje, or even be

Re: Get rid of the clojure.jar

2014-04-12 Thread Cecil Westerhof
2014-04-12 17:56 GMT+02:00 Gary Trakhman : > Oh man, please consider using leiningen. It's a whole new world :-) > > http://leiningen.org/ > That was on my list. I'll leave this problem for the moment being then, because it will be solved 'automatically'. :-D -- Cecil Westerhof -- You receive

Re: Get rid of the clojure.jar

2014-04-12 Thread Gary Trakhman
In your case, once you've created a leiningen project, it's as easy as 'lein uberjar'. On Sat, Apr 12, 2014 at 11:56 AM, Gary Trakhman wrote: > Oh man, please consider using leiningen. It's a whole new world :-) > > http://leiningen.org/ > > > On Sat, Apr 12, 2014 at 11:49 AM, Cecil Westerhof >

Re: Get rid of the clojure.jar

2014-04-12 Thread Gary Trakhman
Oh man, please consider using leiningen. It's a whole new world :-) http://leiningen.org/ On Sat, Apr 12, 2014 at 11:49 AM, Cecil Westerhof wrote: > I am not so far yet that I need it, but it never hurts to look ahead. > > When compiling your Clojure program you call it with: > > java -clas

Get rid of the clojure.jar

2014-04-12 Thread Cecil Westerhof
I am not so far yet that I need it, but it never hurts to look ahead. When compiling your Clojure program you call it with: java -classpath *path*/classes:*path*/clojure.jar com.ociweb.talk *args* But when distributing a program, it would be better to give just one jar file I would think. Ho