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-alpha02

1.0.0-alpha02

Created 23 February 2024.

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-alpha02"
}

See also:

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