Search Gradle plugins

dev.teogor.querent

Querent lays the groundwork for your project's resource management, fostering consistency and efficiency across your development workflow.

https://source.teogor.dev/querent/

Sources: https://github.com/teogor/querent

Version 1.0.0-alpha01

1.0.0-alpha01

Created 21 November 2023.

Querent lays the groundwork for your project's resource management, fostering consistency and efficiency across your development workflow.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.teogor.querent") version "1.0.0-alpha01"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.teogor.querent:gradle-plugin:1.0.0-alpha01")
      }
    }
    
    apply(plugin = "dev.teogor.querent")
  • Applying plugins to all subprojects .