de.docs-as-co.publishToConfluence
Owner: Thomas Grabietz
Publishes HTML, which was created by asciiDoctor to confluence
Sources: https://github.com/docToolchain/docToolchain
Version 1.0.1-SNAPSHOT
Created 11 April 2019.
Publishes HTML, which was created by asciiDoctor to confluence
Add this plugin to your build using the plugins DSL:
plugins {
id("de.docs-as-co.publishToConfluence") version "1.0.1-SNAPSHOT"
}
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("de.docs-as-co.publishToConfluence:de.docs-as-co.publishToConfluence.gradle.plugin:1.0.1-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("de.docs-as-co.publishToConfluence") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.docs-as-co.publishToConfluence:de.docs-as-co.publishToConfluence.gradle.plugin:1.0.1-SNAPSHOT") } } apply(plugin = "de.docs-as-co.publishToConfluence")
- Applying plugins to all subprojects .