pr submitted ๐ Just searched incanter on http://cljdoc.org and was surprised to find its docs because when I try the local ingest for incanter I also get Could not find artifact bouncycastle:bctsp-jdk14:jar:138 in central
. Can it be that the modules were analysed separately? https://cljdoc.org/d/incanter/incanter-sql/1.9.3/api/incanter.sql
Awesome! ๐
Each artifact is analysed separately, yes
so incanter-sql might be there while incanter itself fails for some reason
might there be differences to the local ingest then? because locally I donโt see the namespace for incanter-sql
just see the readme
actually not even the readme, i get a page with the request to build the docs
just cloned the incanter repo and ran ./script/cljdoc ingest -p incanter/incanter -v 1.9.3 --git ~/Desktop/incanter/
so incanter/incanter
!= incanter/incanter-sql
./script/cljdoc ingest -p incanter/incanter-sql -v 1.9.3 --git ~/Desktop/incanter/
after this you shouldn't see the request a build page anymore
i see, so the incanter modules are ingested separately
yes, they are packaged as separate jar/artifact and that's what cljdoc uses to determine boundaries
ok, iโll submit a similar pull request on the incanter-pdf module then
thanks
There's some WIP around blurring that line a little bit, allowing namespaces from dependencies to be shown as if they are part of the artifact https://github.com/cljdoc/cljdoc/pull/264
ah good to know thanks