io.github.natanfudge.rpc4k
                  Owner:
                  
                    
                    Fudge
                  
                
Sets up rpc4k - a framework for interfacing between services in different programming languages
https://github.com/natanfudge/rpc4k
Sources: https://github.com/natanfudge/rpc4k
Version 0.0.13 (latest)
Created 06 December 2023.
                Sets up rpc4k - a framework for interfacing between services in different programming languages
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.github.natanfudge.rpc4k") version "0.0.13"
}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("io.github.natanfudge.rpc4k:io.github.natanfudge.rpc4k.gradle.plugin:0.0.13") }It can then be applied in the precompiled script plugin:plugins { id("io.github.natanfudge.rpc4k") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.natanfudge.rpc4k:io.github.natanfudge.rpc4k.gradle.plugin:0.0.13") } } apply(plugin = "io.github.natanfudge.rpc4k")
- Applying plugins to all subprojects .