asciidoctor-gradle-plugin icon indicating copy to clipboard operation
asciidoctor-gradle-plugin copied to clipboard

A Gradle plugin that uses Asciidoctor via JRuby to process AsciiDoc source files within the project.

Results 109 asciidoctor-gradle-plugin issues
Sort by recently updated
recently updated
newest added

Ensure that the plug-ins also is verified with Java 17.

### Versions: id "org.asciidoctor.jvm.convert" version "3.3.2" gradle version 7.6.1 ### Task raw output: Running the asciidoctor task with `./gradlew asciidoctor --warning-mode=all` returned the following warnings in raw output: ``` $...

It seems that the `org.asciidoctor.jvm.gems` plugin is broken from Gradle 8.7 on, probably because of this bug in grolifant: https://gitlab.com/ysb33rOrg/grolifant/-/issues/137. ### Reproducer Given the following `build.gradle.kts`: ```kotlin buildscript { repositories...

Fixes #725. I need some guidance on how the maintainers would like to handle one issue: I've included a change to the test config that demonstrates the original issue with...

`build.gradle.kts`: ``` plugins { id("org.asciidoctor.jvm.convert") version "3.3.2" } ``` `src/docs/asciidoc/index.adoc`: ``` [[index]] include::attributes.adoc[] ``` `src/docs/asciidoc/attributes.adoc` ``` :doctype: book ``` Output: ``` 09:12:55: Executing 'asciidoctor'... > Task :my-project-docs:asciidoctor include file not...

I update plugin from 4.0.0 to 4.0.2 and gradle build starts failing. Error msg: Execution failed for task ':vrm-specification:asciidoctor'. Collections are not allowed

I'm having some difficulty requiring GEMs, using [the example from the documentation](https://github.com/asciidoctor/asciidoctor-gradle-plugin/blob/b99ef7b1e4b5dde255c6eb955a63d0cc0fb09760/docs/src/docs/asciidoc/parts/asciidoctorj-gems-plugin.adoc). Here's my build script: ```kotlin buildscript { repositories { mavenCentral() } } plugins { id("org.asciidoctor.jvm.convert") version "4.0.2" id("org.asciidoctor.jvm.gems")...

In the Spock build at https://github.com/spockframework/spock/blob/6a82943887b9bfb7585aa42fc3879e5392b9515d/build.gradle#L380 we configure a custom configuration with extensions. These extensions are coming from an included build. While using version 3.3.2 of this plugin, the extensions...

When the new Antora-based documentation becomes available, it will might be necessary to make some changes to the current infrastructure. The latter has been implemented in #303 and pushes all...

documentation
2.x
3.x
has-external-block

We're using `org.asciidoctor:asciidoctor-gradle-jvm-pdf` in a (very simple) precompiled script plugin written in Kotlin. After attempting to upgrade the plugin to `4.0.1` the build fails with the following error: ``` $...