Skip to content

Instantly share code, notes, and snippets.

@thiagotn
Created September 5, 2018 03:27
Show Gist options
  • Save thiagotn/64e489a78d26aec6d420aad92f03099e to your computer and use it in GitHub Desktop.
Save thiagotn/64e489a78d26aec6d420aad92f03099e to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.6</version>
<executions>
<execution>
<id>generate-docs</id>
<phase>prepare-package</phase>
<goals>
<goal>process-asciidoc</goal>
</goals>
<configuration>
<sourceDocumentName>index.adoc</sourceDocumentName>
<backend>html</backend>
<attributes>
<snippets>${project.build.directory}/generated-snippets</snippets>
</attributes>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment