Re: Creating executable Jars?

2009-02-19 Thread Emeka
Kev Are you using ms windows? Emeka --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to

Re: Creating executable Jars?

2009-02-18 Thread kkw
Hi Emeka, Where Lucio says: after that I execute this command in the same folder (c:\user \classes): I had success if I instead followed: after that I execute this command in the same folder (c:\user\apps \classes): Adding the c:\user\apps\classes directory to your classpath is

Re: Creating executable Jars?

2009-02-17 Thread Emeka
Kev, I didn't make it, however, I guess the issue was on namespace and not on the instruction given. I will try again and again until I get my head around namespace, or could you help me to jump start? Emeka --~--~-~--~~~---~--~~ You received this message

Re: Creating executable Jars?

2009-02-14 Thread kkw
Hi Emeka, Did you have success in this? Kev On Jan 29, 10:43 pm, Emeka emekami...@gmail.com wrote: luciofulci I'm interested in your instruction, however, are c:\user\apps\classes and c:\user\classes the same thing? Emeka --~--~-~--~~~---~--~~ You

Re: Creating executable Jars?

2009-01-29 Thread Emeka
luciofulci I'm interested in your instruction, however, are c:\user\apps\classes and c:\user\classes the same thing? Emeka --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send

Re: Creating executable Jars?

2009-01-28 Thread .Bill Smith
Your manifest assumes your main class lives in the default Java package, but doesn't it really live in the progs.comex package? Also, don't you need to use the m switch when you specify a manifest to the jar command? Bill On Jan 27, 10:01 pm, smarf haskell...@gmail.com wrote: (ns

Re: Creating executable Jars?

2009-01-28 Thread Greg Harman
A couple things: 1. I don't know about embedding jars... Instead, use the Class-Path manifest attribute to link in clojure.jar. 2. I noticed that your jar command was specifically packaging only compileexample.class. You need all 4 of those generated classes in the jar. -Greg On Jan 27, 11:01