Fork me on GitHub
#boot
<
2017-10-18
>
minikomi10:10:00

Hi there. I have a project with a lot of images in small directories, and I'm keeping them separate from the resources dir because boot on OSX runs out of processes trying to watch so many folders. However, I want to merge the images into the target folder when doing my final build. Is the best/easiest way just to shell out and copy the folder over?

minikomi10:10:25

eg. using clojure.java.shell

minikomi10:10:38

ooh boot.util/dosh looks useful

delon14:10:29

Hello all

delon14:10:14

Probably a silly question, but what’s the simplest way to add a local jar to the classpath of “boot repl”

delon14:10:04

I’ve tried the “with-cp” task it doesn’t seem to work

donaldball15:10:27

Can you add the jar to your local maven repo and declare the dependency normally?

delon15:10:35

I probably could, that just feels a little clumsy to me at the moment. Unless I have a repo local to the organization I’d rather include the jar in git

delon15:10:33

But if I have too…

alandipert15:10:11

delon you can do boot.pod/add-jar i think it is

alandipert15:10:59

that will add it to the current repl's classpath but doesn't add it to the fileset or anything, so you'd need a different strategy if you want to include it in a deliverable of some kind

yury.solovyov19:10:20

How do I troubleshoot boot-reload if nothing changes on change?