git - Heroku fails to build and push Clojure Project -
i'm getting following errors when i'm trying git push heroku master
remote: retrieving ring/ring-jetty-adapter/1.4.0/ring-jetty-adapter-1.4.0.jar clojars remote: not transfer artifact clj-http:clj-http:pom:2.1.0 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact clj-json:clj-json:pom:0.5.3 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact clojure-csv:clojure-csv:pom:2.0.2 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact enlive:enlive:pom:1.1.6 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact hiccup:hiccup:pom:1.0.5 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact tinter:tinter:pom:0.1.1-20120609.171400-1 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact clj-time:clj-time:pom:0.11.0 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact jayq:jayq:pom:2.5.4 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact midje:midje:pom:1.8.3 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact ring-mock:ring-mock:pom:0.1.5 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: not transfer artifact print-foo:print-foo:pom:1.0.2 from/to clojars (https://clojars.org/repo/): error occurred while retrieving remote repository repository[clojars|https://clojars.org/repo/]: not in gzip format remote: due typo in :dependencies or network issues. remote: remote: ! push rejected, failed compile clojure (leiningen 2) app
my buildpack_url: https://github.com/kolov/heroku-buildpack-clojure
i've looked @ following solution: heroku push rejected references heroku app don't have didn't seem help.
it looks using forked buildpack, older official heroku buildpack (by 3 years). buildpack using older version of leiningen.
i suggest switching default buildpack running:
$ heroku buildpacks:set heroku/clojure
or upgrading custom buildpack use newer lein version changing this line to:
lein_version="2.6.1"
hope helps
Comments
Post a Comment