Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 826 Bytes

INSTALL.md

File metadata and controls

29 lines (23 loc) · 826 Bytes

Preview

See live preview.

Install

Download the stylesheet

If you are using gradle, add below to javadoc options:

    javadoc {
        options.stylesheetFile = new File(projectDir, "path/to/your/resource/dracula-javadoc8.css")
        // And some options...
    }

If you are using maven, add below to plugin option:

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-javadoc-plugin</artifactId>
      <configuration>
        <stylesheetfile>path/to/your/resource/dracula-javadoc8.css</stylesheetfile>
        ...
      </configuration>
    </plugin>