taylorwood / clj.native-image

Build GraalVM native images with Clojure Deps and CLI tools
MIT License
271 stars 20 forks source link

Replace use of clojure-env with new api call #13

Closed puredanger closed 5 years ago

puredanger commented 5 years ago

clojure-env has been deprecated and will be removed. The latest version of tools.deps.alpha has a new method reader/default-deps that can return the set of deps.edn config files that replicates the logic from clj without shelling out.

taylorwood commented 5 years ago

Thank you!