搜索 Gradle 插件

版本 1.0.5(最新版)

1.0.5

创建于 2024年1月1日。

krosbridge 的消息/服务数据类的代码生成器。

使用 插件 DSL

plugins {
  id("io.github.thoebert.krosbridge-codegen") version "1.0.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.thoebert:krosbridge-codegen:1.0.5")
  }
}

apply(plugin = "io.github.thoebert.krosbridge-codegen")

使用 插件 DSL

plugins {
  id "io.github.thoebert.krosbridge-codegen" version "1.0.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.thoebert:krosbridge-codegen:1.0.5"
  }
}

apply plugin: "io.github.thoebert.krosbridge-codegen"

学习如何将插件应用于子项目