14

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.

Oliver
  • 3,815
  • 8
  • 35
  • 63
stepancheg
  • 4,262
  • 2
  • 33
  • 38
  • 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 Answers3

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
5

Do it on BitBucket! You can host a static file web site there.

dimo414
  • 47,227
  • 18
  • 148
  • 244
Rob Eden
  • 362
  • 2
  • 7
2

amazon s3, but it is not free.

Jonathan Komar
  • 2,678
  • 4
  • 32
  • 43
dfa
  • 114,442
  • 31
  • 189
  • 228