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 UTC+2

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 "1.0-SNAP

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

2015-06-04 Thread skuro
Have a look at the sample-project.clj , as you can read: ;; Repositories named "snapshots" and "releases" automatically ;; have their :snapshots and :releases disabled as appropriate. hence, you should do this way:

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 unsu

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"}) O

How to include ... in project.clj

2015-06-03 Thread Jacob Goodson
How would I get this to work? ... snapshots-repo https://oss.sonatype.org/content/repositories/snapshots false true ... Then add sphinx4-core to the project dependencies: edu.cmu.sphinx sphinx4-core 1.0-SNAPSHOT --