This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-07-23
Channels
- # beginners (169)
- # boot (8)
- # cider (20)
- # cljdoc (66)
- # cljs-dev (1)
- # cljsrn (1)
- # clojure (185)
- # clojure-greece (11)
- # clojure-italy (16)
- # clojure-nl (5)
- # clojure-spec (16)
- # clojure-uk (39)
- # clojurescript (11)
- # cursive (26)
- # data-science (2)
- # datavis (1)
- # datomic (40)
- # emacs (10)
- # figwheel-main (64)
- # graphql (10)
- # hyperfiddle (1)
- # jobs (2)
- # leiningen (9)
- # luminus (3)
- # nyc (1)
- # off-topic (19)
- # om (1)
- # onyx (6)
- # pedestal (2)
- # re-frame (35)
- # reagent (17)
- # ring-swagger (9)
- # rum (1)
- # shadow-cljs (42)
- # spacemacs (8)
- # specter (7)
- # tools-deps (4)
- # yada (6)
does boot parse the CLASSPATHS env-variable for colon seperated classpaths, if not, is there an alternative way to feed boot a colon seperated classpath without modifying build.boot ?
By using set-env! :source-paths, I add an absolute path to org_clojure_clojure-1.9.0.jar
, still boot tries to download clojure
Could not transfer artifact org.clojure:clojure:pom:1.9.0 from/to clojars ( ): : Name or service not known
the pom file is inside the jar, don't get it. I need to use boot in offline mode for what Im doing.we've recently upgraded from 2.7.2 to 2.8.1 at work, and this task that was working is now complaining clojure.lang.ExceptionInfo: option :target must be of type [str]
I guess another causality of https://github.com/boot-clj/boot/commit/197f991324d9207f5d4b7b1828dd54ff61aadd09
That seems to be quite an important breaking change...
$ boot -d boot/new new -t app -n taskarg
...
$ cd taskarg/
$ cat build.boot
...
(deftask run
"Run the project."
[a args ARG [str] "the arguments for the application."]
(with-pass-thru fs
(require '[taskarg.core :as app])
(apply (resolve 'app/-main) args)))
...
$ boot run -a foo
java.lang.IllegalArgumentException: option :args must be of type [str]
clojure.lang.ExceptionInfo: option :args must be of type [str]
That works just fine in 2.7.2.The docs indicate this should work https://github.com/boot-clj/boot/wiki/Task-Options-DSL#multi-options
Options can also be sets or vectors. Multiple use of the option on the command line conjes items onto the set or vector.
I see it broke the call
task as well https://github.com/boot-clj/boot/issues/707