When deploying a clojure application in Heroku, I see that it uses cached Leiningen 1.6.2
$ git push heroku master Counting objects: 271, done. Delta compression using up to 2 threads. Compressing objects: 100% (205/205), done. Writing objects: 100% (251/251), 737.28 KiB | 583 KiB/s, done. Total 251 (delta 48), reused 234 (delta 41) -----> Heroku receiving push -----> Clojure app detected -----> Using cached Leiningen 1.6.2 Downloading: rlwrap-0.3.7 Writing: lein script -----> Installing dependencies and compiling with Leiningen ...
I would like to upgrade to 1.7.0 so that I can use the :plugins function in project.clj .
How can I get Heroku to upgrade Leiningen on the cedar stack?
Thanks!
source share