ch.nomisp.confluence.publisher
Owner:
Peter Simon
Gradle plugin to convert and publish documentation written in AsciiDoc to Atlassian Confluence.
https://github.com/nomisp/confluence-publisher-plugin
Sources: https://github.com/nomisp/confluence-publisher-plugin
Version 0.6.0
Created 18 February 2025.
Gradle plugin to convert and publish documentation written in AsciiDoc to Atlassian Confluence.
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.nomisp.confluence.publisher") version "0.6.0"
}
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("ch.nomisp.confluence.publisher:ch.nomisp.confluence.publisher.gradle.plugin:0.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("ch.nomisp.confluence.publisher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.nomisp.confluence.publisher:ch.nomisp.confluence.publisher.gradle.plugin:0.6.0") } } apply(plugin = "ch.nomisp.confluence.publisher")
- Applying plugins to all subprojects .