I have an open source project hosted on bitbucket. Bitbucket does not provide hosting for large number of small files (i. e. javadocs). Where could I publish javadocs? Javadocs must be browseable, not as single archive.
Asked
Active
Viewed 7,769 times
14
-
Checkout this one too - https://docshoster.org/ The differentiation is good search even for older javadoc versions and a different style of documentation menu. – arunskrish Dec 31 '22 at 04:26
3 Answers
15
If your open source project is released to central maven repo, then you can use javadoc.io to host your javadoc.
Your javadoc will be under: http://www.javadoc.io/doc/$groupId/$artifactId
For example: http://www.javadoc.io/doc/org.springframework/spring-core
I find it convenient because javadoc.io will automatically pick up latest version when there is a newer version released to central maven repo.

Max
- 2,065
- 24
- 20
-
It looks great, but for some reason it's not picking up all projects properly (such as [simple-java-mail](http://search.maven.org/#artifactdetails%7Corg.codemonkey.simplejavamail%7Csimple-java-mail%7C2.5.1%7Cjar)). – Benny Bottema Feb 22 '16 at 13:45
-
The searching functionality is badly implemented. But the pattern is simple. For simple-java-mail you can use this direct link: http://www.javadoc.io/doc/org.codemonkey.simplejavamail/simple-java-mail – Max Feb 22 '16 at 22:45
2
amazon s3, but it is not free.

Jonathan Komar
- 2,678
- 4
- 32
- 43

dfa
- 114,442
- 31
- 189
- 228
-
-
It does? I don't see where there is a per file charge. Perhaps it is expensive if you are getting tons of hits, but I don't see where you've said that is an issue? – jsight Apr 20 '09 at 17:24
-
$0.01 per 10,000 GET requests. It seems not so much as I thought before. – stepancheg Apr 20 '09 at 18:09