dev.hsbrysk.kuery-client
Owner: Ryosuke Hasebe
To use Kuery client, you need to use the Kotlin compiler plugin. This is the Gradle plugin for configuring it.
https://github.com/be-hase/kuery-client
Sources: https://github.com/be-hase/kuery-client
Version 0.5.0 (latest)
0.5.0
Created 23 August 2024.
To use Kuery client, you need to use the Kotlin compiler plugin.
This is the Gradle plugin for configuring it.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.hsbrysk.kuery-client") version "0.5.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.hsbrysk.kuery-client:kuery-client-gradle-plugin:0.5.0") } } apply(plugin = "dev.hsbrysk.kuery-client")
- Applying plugins to all subprojects .