This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-10-07
Channels
- # aleph (15)
- # beginners (18)
- # boot (18)
- # business (1)
- # cider (11)
- # cljs-dev (13)
- # cljsrn (19)
- # clojure (14)
- # clojure-austin (8)
- # clojure-dusseldorf (1)
- # clojure-finland (1)
- # clojure-greece (118)
- # clojure-poland (3)
- # clojure-russia (46)
- # clojure-spec (65)
- # clojure-uk (18)
- # clojurebridge (3)
- # clojurescript (16)
- # cloverage (7)
- # core-async (8)
- # cursive (74)
- # datomic (28)
- # editors (3)
- # emacs (3)
- # ethereum (5)
- # hoplon (19)
- # jobs-rus (18)
- # lein-figwheel (1)
- # off-topic (2)
- # om (107)
- # om-next (4)
- # onyx (23)
- # pedestal (23)
- # proton (3)
- # protorepl (1)
- # re-frame (108)
- # reagent (10)
- # ring-swagger (15)
- # spacemacs (2)
- # specter (11)
- # testing (7)
- # untangled (79)
- # vim (4)
- # yada (53)
thanks @flyboarder I can never seem to remember the diff between asset resource and source đŸ˜•
@lwhorton: it's documented on the wiki
@alandipert Why did you replace aot
with a Java shim: https://github.com/adzerk-oss/boot-uberjar-example/commit/d0717cb1feeebcb4d2bffb535b4e5c50520ec2a8?
@kenny i wanted to not aot every class, just one that the jar needs as entrypoint
just aot-ing the entrypoint and then using require/resolve to load in the rest of the app would have worked also
I wrote a script with a few functions that we need available in our boot.builds, before set-env! is called. Currently we load it with load-file. Is it possible to package this as a library/task somehow?
@borkdude you can always call set-env! multiple times
like at one point i made a library with a function that generated the argument to set-env!
so yeah, i'd make it a library per usual, and then just bring it in via set-env!/require before the next time you do set-env stuff
i believe the ability to do this subsumes e.g. maven archetype functionality
if you're making a jar or something in the consuming project, probably good to bring in your support lib w/ :scope test
alternatively you could make a pod at the top of yuor build.boot and load the library in there
then you're dep-conflict free