com.caesarealabs.rpc4k
Owner: Natan Lifshitz
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.7.0
Created 13 June 2024.
Sets up rpc4k - a framework for interfacing between services in different programming languages. To get started view the @Api annotation docs.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.caesarealabs.rpc4k") version "0.7.0"
}
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("com.caesarealabs.rpc4k:com.caesarealabs.rpc4k.gradle.plugin:0.7.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.caesarealabs.rpc4k") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.caesarealabs.rpc4k:com.caesarealabs.rpc4k.gradle.plugin:0.7.0") } } apply(plugin = "com.caesarealabs.rpc4k")
- Applying plugins to all subprojects .