I am lazy so I was hoping to find a simple way to do this. My co-worker has 
written a complex app in Java which does natural language processing. He 
delivered it to me as an uberjar. My app is suppose to call his app as a 
library. 

The path to the file is: 

/Users/rollio/projects/rollio/nlp-housing/maven_repository/SSAM.jar

I was hoping I could do something like this in my project.clj:

[local/SSAM]

and: 

  :repositories {"local" ~(str (.toURI (java.io.File. "maven_repository")))}

but when I do: 

lein uberjar                            

I get: 
                         
(Could not find artifact SSAM:SSAM:jar:jar in central 
(http://repo1.maven.org/maven2/))
(Could not find artifact SSAM:SSAM:jar:jar in clojars 
(https://clojars.org/repo/))
(Could not find artifact SSAM:SSAM:jar:jar in local 
(file:/Users/rollio/projects/rollio/nlp-housing/maven_repository/))

Is there a way I can simply consume that, or do I have to unpack it and 
install it to ./.m2 and all of that jazz? 







-- 
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 unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to