I have a clojure project using deps.edn, which was using pack.alpha to build a skinny jar (plus libs dir) in my CI build using clj -A:pack-staging and aliases in deps.edn of:
This stopped working in the CI, so I've been trying to bring it up to date. I've upgraded clojure tools to 1.11.1.1113, and created a new alias in deps.edn and used the example from your README (adjusted based on issue #97 )
It's my understanding (probably wrong!), that running clojure -T:pack skinny would build a jar based on the root deps and create a jar a target directory? (I've also tried with -X) If not, what other values do I need to pass in to the tools command to get it to output files?
Do you have a hello world example that could be included to show the usage now?
I have a clojure project using deps.edn, which was using pack.alpha to build a skinny jar (plus libs dir) in my CI build using
clj -A:pack-staging
and aliases in deps.edn of:This stopped working in the CI, so I've been trying to bring it up to date. I've upgraded clojure tools to 1.11.1.1113, and created a new alias in deps.edn and used the example from your README (adjusted based on issue #97 )
It's my understanding (probably wrong!), that running
clojure -T:pack skinny
would build a jar based on the root deps and create a jar atarget
directory? (I've also tried with-X
) If not, what other values do I need to pass in to the tools command to get it to output files? Do you have a hello world example that could be included to show the usage now?Many thanks 🙇