Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread Mark Neyer
i haven't set nativepath it looks like aptitude installed lein 1.7 i downloaded lein2, and it works. thanks so much man! <3 On Tuesday, October 30, 2012 2:38:53 PM UTC-7, AtKaaZ wrote: > > How come you got this message? > *Copying 91 files to /home/mark/gc/src/titan-test-**case/lib* > > Did you

Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread AtKaaZ
How come you got this message? *Copying 91 files to /home/mark/gc/src/titan-test-**case/lib* Did you use a different project.clj which has :native-path ? Because it seems it's happening when trying to extract the native deps from a jar into the lib folder in your project. I tried adding :native-

Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread AtKaaZ
Using your provided project.clj and lein2 from master I was able to successfully run lein deps Here's a part of the output: ... Retrieving org/mortbay/jetty/jsp-api-2.1/6.1.14/jsp-api-2.1-6.1.14.jar (132k) fr om central Retrieving org/mortbay/*jetty/servlet-api*-2.5/6.1.14/servlet-api-2.5-6.1.14.

Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread AtKaaZ
Someone said this " I solved this by clearing the jboss-x.y.z/server[config]/tmp and jboss-x.y.z/server/[config]/work directories. " Not sure if this at all applies to you On Tue, Oct 30, 2012 at 9:58 PM, AtKaaZ wrote: > > > On Tue, Oct 30, 2012 at 9:57 PM, AtKaaZ wrote: > >> I cannot acces

Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread AtKaaZ
On Tue, Oct 30, 2012 at 9:57 PM, AtKaaZ wrote: > I cannot access http://m1.dev.java.net/ I'm getting server not found. > Maybe it's unrelated. > oh i see that this is the repo name, my bad. > But the zip file is a .jar file, it's possible it's either 0 bytes or > incomplete - my guess. > you c

Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread AtKaaZ
I cannot access http://m1.dev.java.net/ I'm getting server not found. Maybe it's unrelated. But the zip file is a .jar file, it's possible it's either 0 bytes or incomplete - my guess. you can set env var DEBUG to y so lein will spit more info On Tue, Oct 30, 2012 at 9:55 PM, Mark Neyer wrote:

Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread Mark Neyer
nope, same problem. i didn't post the entire console log spam before it crashes; it successfully gets a bunch of libraries, but seems to get stuck on jetty/servlet-api - and it always appears to get stuck there. is there any way i can see what zip file it was trying to open? On Tuesday, October

Re: lein deps fails with java.util.zip.ZipException: error in opening zip file

2012-10-30 Thread AtKaaZ
Maybe try creating ~/.m2 On Tue, Oct 30, 2012 at 9:23 PM, Mark Neyer wrote: > i'm trying to get a graph database running on my machine, and when i run > lein deps (after rm -rf ~/.m2 and $PROJECT_DIR/lib ) i keep seeing this: > > > [INFO] Unable to find resource 'com.sun.xml.bind:jaxb-impl:jar

Re: lein deps

2012-10-08 Thread John Gabriele
On Monday, October 8, 2012 8:11:52 PM UTC-4, Brian Craft wrote: > > Apparently. I'm completely baffled by module naming and references. jdbc > in project.clj is org.clojure/java.jdbc, but is clojure.java.jdbc in the > (ns) call? gloss is gloss in project.clj but gloss.core, gloss.io in the > (ns

Re: lein deps

2012-10-08 Thread Brian Craft
Apparently. I'm completely baffled by module naming and references. jdbc in project.clj is org.clojure/java.jdbc, but is clojure.java.jdbc in the (ns) call? gloss is gloss in project.clj but gloss.core, gloss.io in the (ns) call. Is unzipping the jars the only way to know how to reference a mod

Re: lein deps gets error

2011-08-12 Thread Ken Wesson
On Fri, Aug 12, 2011 at 6:53 PM, jayvandal wrote: > I do a lein new hello_world and I get a directory called hello_world. > I then try "lein deps". > I get several lines of errors starting with "#!" > What am I doing wrong? > = > > Microsoft Wind

Re: lein deps error, please help...

2011-04-21 Thread uMany
Thank you very much Mr Hugo. I'm now able to continue with my learning. Hope to be helping people here soon :-) -- 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 Note that posts from new memb

Re: lein deps error, please help...

2011-04-21 Thread Hugo Duncan
On Thu, 21 Apr 2011 20:24:15 -0400, uMany wrote: when I try lein deps at a test-project with this I got this long error message: tmp/test-project$ lein deps Downloading: org/clojure/clojure/1.2.0-master-SNAPSHOT/clojure-1.2.0-master-SNAPSHOT.jar from clojure-snapshots Downloading: org/clojure/c

Re: Lein deps failure

2010-06-08 Thread Brian Troutwine
Indeed. This was a helpful resource, for those in the future that face a similar issue and are not familiar with Java packaging: http://github.com/technomancy/leiningen/blob/master/INTRO.md On Mon, Jun 7, 2010 at 3:20 PM, Meikel Brandmeyer wrote: > Hi, > > Am 07.06.2010 um 21:20 schrieb Brian Tr

Re: Lein deps failure

2010-06-07 Thread Meikel Brandmeyer
Hi, Am 07.06.2010 um 21:20 schrieb Brian Troutwine: > Why does this work? >> change [org.clojure/swank-clojure "1.2.1"] => [swank-clojure "1.2.1"] Each dependency has a group and an artifact name. org.clojure/swank-clojure means group "org.clojure" and artifact "swank-clojure". swank-clojure is

Re: Lein deps failure

2010-06-07 Thread Brian Troutwine
Interesting, that works perfectly. Thanks! Why does this work? On Mon, Jun 7, 2010 at 12:16 PM, patrik karlin wrote: > Hey Brian > > change [org.clojure/swank-clojure "1.2.1"] => [swank-clojure "1.2.1"] > > > 2010/6/7 Brian Troutwine : >> Hello all, >> >> I have the following in project.clj in m

Re: Lein deps failure

2010-06-07 Thread patrik karlin
Hey Brian change [org.clojure/swank-clojure "1.2.1"] => [swank-clojure "1.2.1"] 2010/6/7 Brian Troutwine : > Hello all, > > I have the following in project.clj in my newly lein generated project: > > > (defproject void "1.0.0" >  :description "A toy." >  :dependencies [[org.clojure/clojure "1.1.