Skip to content

Instantly share code, notes, and snippets.

@aslakknutsen
Created June 4, 2013 07:09
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aslakknutsen/5704135 to your computer and use it in GitHub Desktop.
Save aslakknutsen/5704135 to your computer and use it in GitHub Desktop.
Asciidoclet with Gradle
configurations {
asciidoclet
}
dependencies {
asciidoclet 'org.asciidoctor:asciidoclet:0.1.3'
}
javadoc {
options.docletpath = configurations.asciidoclet.files.asType(List)
options.doclet = 'org.asciidoctor.Asciidoclet'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment