Asciidoctor plugin 0.2.1 available

Hello everyone,

The asciidoctor-gradle-plugin team is happy to announce the latest release (0.2.1) is available.

Quick usage example:

buildscript {
    repositories {
        mavenLocal()
        mavenRepo name: 'Bintray', url: 'http://dl.bintray.com/content/aalmiray/asciidoctor'
    }
    dependencies {
        classpath 'org.asciidoctor:asciidoctor-gradle-plugin:0.2.1'
    }
}
apply plugin: 'asciidoctor'

More information on the plugin can be found at https://github.com/asciidoctor/asciidoctor-gradle-plugin

Keep on Groovying!

Hi Andres, having such a plugin is great . Just wondering if it could be worthwhile extracting asciidoctor-jruby integration into a separate subproject. I feel having a standard way to invoke asciidoc(tor) from the jvm could be preferable than reinventing the wheel every time. For instance I’d like to produce some sort of asciidoc files preview into eclipse, something similar to plantuml eclipse plugin. I messed with it some time ago (launching asciidoc through jython) but I left it in an early immature state. It could be much easier doing the whole job if such a java asciidoc bridge would be available.

Cheers Davide

Hi Davide,

Good point. I think it’s worth discussing at http://discuss.asciidoctor.org/ considering that currently both gradle and maven plugins use the same approach to run Asciidoctor.

Cheers, Andres

I’ve just started http://discuss.asciidoctor.org/Is-it-worth-refactoring-asciidoctor-jruby-integration-into-a-shared-library-td25.html Cheers, Davide