Welcome! Please see the About page for a little more info on how this works.

0 votes
in tools.deps by

how to convert deps,edn file to pom.xml file i am using leiningen

1 Answer

0 votes
by

If you have the official Clojure CLI installed, you can run:

clojure -X:deps mvn-pom

to produce a pom.xml file.

If you're using Leiningen, don't you already have a project.clj file, and Leiningen will produce a pom.xml file from that.

Otherwise, perhaps you can provide more background on what your situation is - how your project is set up and what, exactly, you are trying to do?

...