Search Gradle plugins

Version 0.6.11 (latest)

Created 08 June 2024.

Code Generator from .proto files to Kotlin code.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.timemates.rsproto") version "0.6.11"
}

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("org.timemates.rsproto:org.timemates.rsproto.gradle.plugin:0.6.11")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.timemates.rsproto")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.timemates.rsproto:org.timemates.rsproto.gradle.plugin:0.6.11")
      }
    }
    
    apply(plugin = "org.timemates.rsproto")
  • Applying plugins to all subprojects .