de.inetsoftware.docfx
Owner:
i-net software GmbH
Gradle plugin for DocFX documentation generation.
https://github.com/i-net-software/gradle-docfx-plugin
Sources: https://github.com/i-net-software/gradle-docfx-plugin
Version 0.0.8 (latest)
Created 27 November 2025.
Gradle plugin for DocFX documentation generation.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.inetsoftware.docfx") version "0.0.8"
}
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.inetsoftware.docfx:de.inetsoftware.docfx.gradle.plugin:0.0.8") }It can then be applied in the precompiled script plugin:plugins { id("de.inetsoftware.docfx") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.inetsoftware.docfx:de.inetsoftware.docfx.gradle.plugin:0.0.8") } } apply(plugin = "de.inetsoftware.docfx") - Applying plugins to all subprojects .