Search Gradle plugins

Version 5.0.0-alpha.1 (latest)

Created 19 September 2025.

Generate .asciidoctorconfig files for use by supported IDEs. . (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 4.x release of this plugin instead).

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.asciidoctor.editorconfig") version "5.0.0-alpha.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.asciidoctor.editorconfig:org.asciidoctor.editorconfig.gradle.plugin:5.0.0-alpha.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.asciidoctor.editorconfig")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.asciidoctor.editorconfig:org.asciidoctor.editorconfig.gradle.plugin:5.0.0-alpha.1")
      }
    }
    
    apply(plugin = "org.asciidoctor.editorconfig")
  • Applying plugins to all subprojects .