Re: How to include ... in project.clj

2015-06-05 Thread skuro
There's something fishy going on with that dependency: the SHA1 hash of the artifact doesn't match with the expected one coming from the repo. Try adding a :checksum :ignore to shapshots-repo in project.clj, it should solve your issue. HTH, c. Il giorno giovedì 4 giugno 2015 18:07:58

Re: How to include ... in project.clj

2015-06-04 Thread Jacob Goodson
Thanks, one last question(hopefully)... I have gotten it to pull down the sphinx4-core but for some reason it will not pull down the data. :dependencies [[org.clojure/clojure 1.6.0] [edu.cmu.sphinx/sphinx4-data 1.0-SNAPSHOT] [edu.cmu.sphinx/sphinx4-core

Re: How to include ... in project.clj

2015-06-04 Thread skuro
Have a look at the sample-project.clj https://github.com/technomancy/leiningen/blob/master/sample.project.clj#L78, as you can read: ;; Repositories named snapshots and releases automatically ;; have their :snapshots and :releases disabled as appropriate. hence, you should do this way:

How to include ... in project.clj

2015-06-03 Thread Jacob Goodson
How would I get this to work? project ... repositories repository idsnapshots-repo/id urlhttps://oss.sonatype.org/content/repositories/snapshots/url releasesenabledfalse/enabled/releases snapshotsenabledtrue/enabled/snapshots

Re: How to include ... in project.clj

2015-06-03 Thread Jacob Goodson
I tried this but it did not work... :dependencies [[org.clojure/clojure 1.6.0] [edu.cmu.sphinx/sphinx4-core 1.0-SNAPSHOT] [edu.cmu.sphinx/sphinx4-data 1.0-SNAPSHOT]] :repositories {snapshots-repo https://oss.sonatype.org/content/repositories/snapshots}) On

Re: How to include ... in project.clj

2015-06-03 Thread Steve Ashton
Try: :repositories [[... url]] -Steve -- 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 members are moderated - please be patient with your first post. To