dev.teogor.querent
Owner: Teodor Grigor
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)
1.0.0-alpha03-SNAPSHOT-8f9a736
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"