Search Gradle plugins

cloud.rio.gdprdoc

Gradle plugin to generate data classification documentation (needed for the GDPR documentation) for your project based on annotations on data classes

https://company.rio.cloud

Sources: https://github.com/rio-cloud/gradle-gdpr-documentation-plugin

Version 1.0.2 (latest)

Created 07 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 "1.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:1.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:1.0.2")
      }
    }
    
    apply(plugin = "cloud.rio.gdprdoc")
  • Applying plugins to all subprojects .