cloud.rio.gdprdoc
Owner:
Tobias Placht
Gradle plugin to generate data classification documentation (needed for the GDPR documentation) for your project based on annotations on data classes
Sources: https://github.com/rio-cloud/gradle-gdpr-documentation-plugin
Version 0.0.2
Created 06 August 2025.
Gradle plugin to generate data classification documentation (needed for the GDPR documentation) for your project based on annotations on data classes
Add this plugin to your build using the plugins DSL:
plugins {
id("cloud.rio.gdprdoc") version "0.0.2"
}
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("cloud.rio.gdprdoc:cloud.rio.gdprdoc.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("cloud.rio.gdprdoc") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cloud.rio.gdprdoc:cloud.rio.gdprdoc.gradle.plugin:0.0.2") } } apply(plugin = "cloud.rio.gdprdoc")
- Applying plugins to all subprojects .