Fork me on GitHub
#boot
<
2016-12-25
>
danielsz12:12:46

Happy holidays, everybody! I've updated Boot to 2.7.1, and since then I have trouble with the push task. I'm getting an error from Clojars: Could not transfer artifact Return code is: 501, ReasonPhrase: Not Implemented. Anybody has seen this before?

danielsz12:12:49

I've upgraded from Boot 2.5.5.

tcrawley12:12:07

@danielsz: can you gist the full error? What artifact are you pushing? (I can peak at the logs on the server to see if there is anything useful there)

danielsz12:12:43

@tcrawley Awesome. Thanks. I'm on it.

tcrawley12:12:22

@danielsz: not trying to rush you, but I have to leave my computer in about 3 minutes, and will be gone for the day :)

tcrawley12:12:37

hmm, it's trying to push to http://repo.clojars.org, which is wrong. http://repo.clojars.org is the read-only cdn. It should be pushing to http://clojars.org/repo. Are you adjusting any repo urls in build.boot?

tcrawley13:12:06

the default read repo changed to http://repo.clojars.org in 2.7.0

danielsz13:12:23

Well, that fixes it then. Thank you!

tcrawley13:12:31

sorry for the confusion

danielsz13:12:54

No problem. It's all for the good cause.

pesterhazy14:12:40

I'm having boot-cljs asset-path again

pesterhazy14:12:18

... aaaand it was obviously an editor fail, sorry

flyboarder17:12:58

Happy Holidays Everyone! 🎄 boot-clj

richiardiandrea18:12:27

Happy holidays from here too ;)

flyboarder18:12:33

Anyone else gotten the Classpath conflict: org.clojure/clojure version 1.7.0 already loaded, NOT loading version 1.8.0 warning?

flyboarder18:12:37

only happening with version 2.7

micha19:12:16

merry 🎅 @flyboarder -- that's telling you that clojure 1.7.0 was loaded by boot but then something tried to pull in 1.8.0 via dependencies

micha19:12:37

it happens in earlier versions too, but there is no warning about it

micha19:12:28

if you add a clojure dependency to your build.boot it will go away

flyboarder19:12:04

@micha: using 1.8.0 in my boot file causes the issue

flyboarder19:12:16

Shouldn't boot be using 1.8 as of 2.7?

flyboarder19:12:51

The wiki says it includes 1.8

micha19:12:46

your ~/.boot/boot.properties file may contain something different

micha19:12:52

or your ./boot.properties?

flyboarder20:12:08

Ah I'll check that, nothing in local properties except the boot version

flyboarder20:12:13

@micha yep, ~/.boot/boot.properties had 1.7.0 thanks!