Fork me on GitHub
#clojure-austin
<
2023-08-24
>
staypufd00:08:24

Next month we don’t have one. The one you are remembering is for Nov. Just waiting to confirm. Already have page data set up and ready to publish. Have asked if Yee Fay Lin is ok with the description I wrote that summarized what she sent me.

staypufd00:08:37

As soon as I get that it’ll be announced

mlimotte14:08:43

Have y’all used Clojure tools.build ? Any recommendation/opinion “for” or “against”?

dpsutton14:08:13

100% use it and love it

👍 2
dpsutton14:08:44

one downside is that it will explode all jars into a temp directory. jars and linux are case sensitive. osx is not. So you can run into issues, usually around licensing

dpsutton14:08:36

aka one jar includes a file LICENSE and then another jar includes license/EPL.txt or something. These can coexist in a jar and on linux but osx unifies the file LICENSE with the directory license and they cannot both exist.

dpsutton15:08:07

and the best way to add the decent amount of boiler plate is neil add build and modify as you need

💯 1
jakebasile15:08:42

I just use leiningen because it works

👍 2
dpsutton15:08:11

Same idea. Except the little program that builds your jar is impossible to modify with lein

mlimotte17:08:18

I haven’t looked at neil either, but looks useful. Anagram for lein, I’m assuming.

mlimotte17:08:23

thanks for the tip

dpsutton17:08:17

Graal native tool to edit deps edn files. Can add test infra, build, upgrade deps, etc. rewrites deps.edn while preserving indentation, comments, etc