This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-26
Channels
- # aws (4)
- # beginners (21)
- # boot (12)
- # cider (3)
- # cljs-dev (1)
- # cljsrn (10)
- # clojure (190)
- # clojure-nl (1)
- # clojure-russia (7)
- # clojure-spec (1)
- # clojure-sweden (9)
- # clojure-uk (30)
- # clojurebridge (1)
- # clojurescript (105)
- # cursive (4)
- # emacs (8)
- # jobs (1)
- # jobs-rus (4)
- # klipse (1)
- # luminus (5)
- # om (3)
- # onyx (2)
- # pedestal (5)
- # powderkeg (15)
- # re-frame (13)
- # reagent (1)
- # ring-swagger (5)
- # rum (5)
- # vim (8)
hey, dumb q, but how do i set a dependency to a git commit?
like, on github
nm, i worked around it
Hi, I’m a bit of a n00b and have a question… I am writing a Clojurescript application and have created a jar with an external dependency (i.e. the actual library javascript and the externs, in the same format that jars from http://cljsjs.github.io provides). The jar is just a local file though (not in any repository). How do I setup my build.boot
so I can use it from my clojurescript application?
@kahlin in the jar's project dir, you can boot install
- that installs it to your local maven repo
then you can add it to your application using maven coordinates, even tho it only exists locally
Hmm, is a local maven repo something I need to set up or just something in my filesystem? (Like I said, a bit of a n00b… 😃 )
not something you need to set up, when you get deps in our build.boot it's created automatically for you in ~/.m2/repositories
it functions mostly as a cache... maven stuff checks there first before looking on internet
but you can install directly to it, and thereby circumvent internet
np, :thumbsup: