-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document how to use with deps.edn #194
Comments
I tried doing this using the new
In theory, this should be a pretty good option for doing this. However, I get the following:
(Note that I'm adding Curiously, if I just run a REPL with Any idea what might be going on here? Thanks! |
It looks like you have a strange dependency issue with Hiccup, where the hiccup.page namespace is from 2.0, and the hiccup.util namespace is from 1.0. Try wiping the class files in your target directory. |
Hi @weavejester. Thanks for the rapid response! I will note that Oz is using hiccup Is hiccup getting close to a non-alpha 2.0.0 readiness? Would it be feasible to update this dependency for codox? Thanks again! |
Something seems strange in your build chain if you're ending up with compiled namespaces from two different versions of the same dependency. Hiccup 2.0 is backward compatible with 1.0, so you could just manually force Codox to use Hiccup 2.0. |
Thanks again for the quick response. The problem here appears to be an issue with Clojupyter AOT/Uberjar compiling with an older version of hiccup. If I comment out the namespace which uses Clojupyter and leave I'll submit a PR for an update to the README that documents how to use codox with Thanks again! |
Hello
I'm considering using codox to document Oz & Semantic CSV, but Oz uses
clj
&deps.edn
, and I will be moving Semantic CSV to the same. I see from #163 thatcodox
doesn't require leiningen, but I don't see any documentation about how I might use it with thedeps.edn
toolchain.It seems like I can just manually call
codox.main/generate-docs
, likely even from adeps.edn
alias, but it would be nice to see some examples of this.Thanks!
The text was updated successfully, but these errors were encountered: