Search Gradle plugins

dev.hsbrysk.kuery-client

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.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects