Search Gradle plugins

org.jetbrains.kotlinx.rpc.plugin

The plugin ensures correct RPC configurations for your project, that will allow proper code generation. Additionally, it enforces proper artifacts versions for your project, depending on your Kotlin version. Resulting versions of the kotlinx.rpc dependencies will be 'kotlinVersion-kotlinxRpcVersion', for example '1.9.24-0.2.0', where '0.2.0' is the kotlinx.rpc version.

https://kotlinlang.org

Sources: https://github.com/Kotlin/kotlinx-rpc

Version 0.4.0 (latest)

0.4.0

Created 05 November 2024.

The plugin ensures correct RPC configurations for your project, that will allow proper code generation.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.kotlinx.rpc.plugin") version "0.4.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlinx:kotlinx-rpc-gradle-plugin:0.4.0")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlinx.rpc.plugin")
  • Applying plugins to all subprojects .