This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-12-30
Channels
- # adventofcode (7)
- # announcements (9)
- # babashka (20)
- # beginners (182)
- # calva (9)
- # cider (20)
- # circleci (3)
- # clj-kondo (1)
- # clojure (269)
- # clojure-europe (2)
- # clojure-india (1)
- # clojure-italy (6)
- # clojure-nl (5)
- # clojure-uk (50)
- # clojurescript (56)
- # code-reviews (3)
- # core-async (174)
- # datomic (4)
- # duct (1)
- # emacs (3)
- # events (1)
- # fulcro (31)
- # graalvm (10)
- # graphql (8)
- # jobs (1)
- # joker (11)
- # juxt (7)
- # luminus (2)
- # malli (4)
- # off-topic (2)
- # overtone (1)
- # pathom (2)
- # re-frame (24)
- # shadow-cljs (42)
- # sql (1)
- # tools-deps (10)
seancorfield/clj-new {:mvn/version "0.8.1"}
-- https://github.com/seancorfield/clj-new/releases/tag/v0.8.1 -- adds pom.xml
to app
template as well; adds jar/uberjar building aliases to all three built-in templates; expands documentation on the built-in templates how to modify pom.xml
generation via the -e
/ --env
options.
In particular, note that projects generated from the app
template now let you run clojure -A:uberjar
to produce a JAR file that can be run with java -jar
-- the :uberjar
alias includes a compile
call on the main namespace and the classes
folder is added to the paths when building the JAR.
I would like to mimic the effect of npm install
or lein deps
with tools-deps. That is, to fetch the dependencies and exit. Running clj -R:alias
always leaves me in a running REPL and I could not find an option in the documentation to do what I want.
Thanks, that will work :)
if you want to run something and immediately exit
Thank you :)