leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
atticmaverick 2019-11-04T21:20:30.072800Z

i have a project that hangs when running "lein uberjar". it appears to compile all the project files but after the last one it just hangs. I read that it could be that a function call is outside the main. i checked and didnt see anything. is there a verbose build mode or something that can give me a hint?

2019-11-04T21:29:02.074100Z

@atticmaverick I believe I’ve seen issues before where the classpath was recursive or something like that so it gets caught in a loop

2019-11-04T21:29:07.074400Z

Maybe try looking into that

2019-11-04T21:30:39.074800Z

lein classpathcould potentially help

2019-11-04T21:31:20.075300Z

You may have to add profiles if your uberjar has special stuff in it. Like

2019-11-04T21:31:54.075800Z

lein with-profile uberjar classpath

2019-11-04T21:31:58.076Z

For example

atticmaverick 2019-11-04T22:19:23.076900Z

okay thanks. I will take a look. I was wondering if it was some kind of circular call. I was just hoping there would be some kind of way to see what is actually going on.

atticmaverick 2019-11-04T23:21:10.077500Z

no luck. i think i will try building leinigen and debug it from there