Search Gradle plugins

com.caesarealabs.rpc4k

Sets up rpc4k - a framework for interfacing between services in different programming languages. To get started view the @Api annotation docs.

https://github.com/natanfudge/rpc4k

Sources: https://github.com/natanfudge/rpc4k

Version 0.5.0 (latest)

Created 20 April 2024.

Sets up rpc4k - a framework for interfacing between services in different programming languages. To get started view the @Api annotation docs.

Using the plugins DSL:

plugins {
  id("com.caesarealabs.rpc4k") version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.caesarealabs:plugin:0.5.0")
  }
}

apply(plugin = "com.caesarealabs.rpc4k")

Using the plugins DSL:

plugins {
  id "com.caesarealabs.rpc4k" version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.caesarealabs:plugin:0.5.0"
  }
}

apply plugin: "com.caesarealabs.rpc4k"

Learn how to apply plugins to subprojects