Open patrick-galvin opened 4 years ago
I experienced the same problem in a project that uses :managed-dependencies
from a shared lein-parent
project with the following:
[org.ow2.asm/asm "7.0"]
[org.ow2.asm/asm-analysis "7.0"]
[org.ow2.asm/asm-commons "7.0"]
[org.ow2.asm/asm-tree "7.0"]
[org.ow2.asm/asm-util "7.0"]
Excluding asm-all
and downgrading parboiled-java
didn't work for me. Pinning them within a profile did though:
:aliases {"docs" ["with-profile" "docs" "codox"]}
:profiles {:docs {:plugins [[lein-codox "0.10.7"]]
:managed-dependencies [[org.ow2.asm/asm-analysis "5.0.3"]
[org.ow2.asm/asm-tree "5.0.3"]
[org.ow2.asm/asm-util "5.0.3"]
[org.ow2.asm/asm "5.0.3"]]}}
I ran into a problem running codox with the latest crux. I assumed it was something to do with the asm 7.1 dependency from rocksdb. I'm not very confident how good the fix is, but it does work for me
In the codox project.clj:
Remove
Add