no.nordicsemi.plugin.dokka
Owner: Nordic Semiconductor ASA
Plugin configuring Dokka for Nordic projects.
Sources: https://github.com/NordicSemiconductor/Android-Gradle-Plugins
Version 2.6 (latest)
Created 20 December 2024.
Plugin configuring Dokka for Nordic projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("no.nordicsemi.plugin.dokka") version "2.6"
}
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("no.nordicsemi.plugin.dokka:no.nordicsemi.plugin.dokka.gradle.plugin:2.6") }
It can then be applied in the precompiled script plugin:plugins { id("no.nordicsemi.plugin.dokka") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("no.nordicsemi.plugin.dokka:no.nordicsemi.plugin.dokka.gradle.plugin:2.6") } } apply(plugin = "no.nordicsemi.plugin.dokka")
- Applying plugins to all subprojects .