搜索 Gradle 插件

io.github.natanfudge.rpc4k

所有者: Fudge

设置 rpc4k - 一种在 不同编程语言的服务之间进行接口的框架

https://github.com/natanfudge/rpc4k

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

版本 0.0.13(最新版)

0.0.13

创建于 2023 年 12 月 6 日。

设置 rpc4k - 一种在 不同编程语言的服务之间进行接口的框架

使用 plugins DSL

plugins {
  id("io.github.natanfudge.rpc4k") version "0.0.13"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.natanfudge:plugin:0.0.13")
  }
}

apply(plugin = "io.github.natanfudge.rpc4k")

使用 plugins DSL

plugins {
  id "io.github.natanfudge.rpc4k" version "0.0.13"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.natanfudge:plugin:0.0.13"
  }
}

apply plugin: "io.github.natanfudge.rpc4k"

了解如何将插件应用到子项目中