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.6.0
Created 19 December 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.6.0"
}
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("dev.hsbrysk.kuery-client:dev.hsbrysk.kuery-client.gradle.plugin:0.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("dev.hsbrysk.kuery-client") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.hsbrysk.kuery-client:dev.hsbrysk.kuery-client.gradle.plugin:0.6.0") } } apply(plugin = "dev.hsbrysk.kuery-client")
- Applying plugins to all subprojects .