Search code examples
orientdb

OrientDB Javadocs for offline use download location?


The OrientDB javadoc reference can be found at http://orientdb.com/javadoc/2.2.x/, but I have been unsuccessful in locating the API reference docs in a downloadable form as a ZIP of the HTML or a PDF.

I've tried pulling the latest source down from github but Maven hasn't been playing nice with me when I've tried to build it using:

$ mvn javadoc:javadoc

If there's a better command line option to make it build an offline copy of the docs, I can make another attempt.

It would be fantastic if the javadocs were available for download for offline use... if it is available can someone provide the link?

Thanks!


Solution

  • If you want to generate the Javadoc locally, clone the repository and execute from the root of the project: mvn javadoc:aggregate. The complete html will be generated on ./target/site/apidocs/

    If you need to have the Javadoc available in the IDE (idea, eclipse), mvn dependency:resolve -DdownloadSources=true -DdownloadJavadocs=true will download sources and Javadoc jars.

    And of course Javadoc jars are available on maven central:

    http://central.maven.org/maven2/com/orientechnologies/orientdb-core/2.2.13/