搜索 Gradle 插件

dev.hsbrysk.kuery-client

拥有者: Ryosuke Hasebe

要使用 Kuery 客户端,您需要使用 Kotlin 编译器插件。这是为其配置的 Gradle 插件。

https://github.com/be-hase/kuery-client

源代码: https://github.com/be-hase/kuery-client

版本 0.4.1(最新版)

0.4.1

创建于 2024 年 6 月 27 日。

要使用 Kuery 客户端,您需要使用 Kotlin 编译器插件。这是为其配置的 Gradle 插件。

使用 插件 DSL

plugins {
  id("dev.hsbrysk.kuery-client") version "0.4.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("dev.hsbrysk.kuery-client:kuery-client-gradle-plugin:0.4.1")
  }
}

apply(plugin = "dev.hsbrysk.kuery-client")

使用 插件 DSL

plugins {
  id "dev.hsbrysk.kuery-client" version "0.4.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "dev.hsbrysk.kuery-client:kuery-client-gradle-plugin:0.4.1"
  }
}

apply plugin: "dev.hsbrysk.kuery-client"

learning how to apply plugins to subprojects