This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-04
Channels
- # announcements (10)
- # asami (6)
- # babashka (22)
- # beginners (44)
- # biff (1)
- # calva (8)
- # clj-kondo (13)
- # clojure (62)
- # clojure-art (1)
- # clojure-europe (27)
- # clojure-nl (1)
- # clojure-norway (19)
- # clojure-spec (19)
- # clojure-uk (2)
- # component (29)
- # datascript (1)
- # fulcro (9)
- # gratitude (2)
- # kaocha (6)
- # klipse (1)
- # luminus (16)
- # malli (9)
- # nbb (5)
- # off-topic (4)
- # reagent (5)
- # shadow-cljs (85)
- # spacemacs (1)
- # tools-deps (10)
- # vim (9)
- # xtdb (2)
[benj@benj-pc jdbc] 0 $ tree
.
├── aws-java-sdk-core-1.12.23.jar
..... 10 more
└── redshift-jdbc42-2.1.0.8.jar
I have a dir like this full of jars without a pom. How do I add them all to the classpath?I would generate deps.edn in that repository using babashka with :paths pointing to each jar
clj -Scp "*"
jvm classpath has a special case for * as a wildcard
and note that this is not a shell expansion thing - the jvm expects to see "*" as part of a path item
and not everything you think would work at the shell works in the jvm, it's much more limited