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-alpha03-SNAPSHOT-8f9a736 (latest)

Created 04 March 2024.

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

Using the plugins DSL:

plugins {
  id("dev.teogor.querent") version "1.0.0-alpha03-SNAPSHOT-8f9a736"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.teogor.querent:gradle-plugin:1.0.0-alpha03-SNAPSHOT-8f9a736")
  }
}

apply(plugin = "dev.teogor.querent")

Using the plugins DSL:

plugins {
  id "dev.teogor.querent" version "1.0.0-alpha03-SNAPSHOT-8f9a736"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.teogor.querent:gradle-plugin:1.0.0-alpha03-SNAPSHOT-8f9a736"
  }
}

apply plugin: "dev.teogor.querent"

Learn how to apply plugins to subprojects